@extends('frontend.layouts.app') @section('title', 'Apply for ' . $vacancy->title) @section('description', 'Apply for the ' . $vacancy->title . ' position.') @section('content') @php $assetPath = fn (string $path) => asset('frontend/' . ltrim($path, '/')); @endphp @include('frontend.layouts.breadcrumb', ['title' => 'Apply — ' . Str::limit($vacancy->title, 52)])
Careers

{{ $vacancy->title }}

You are applying for this opening. Complete the form and we will get back to you.

@if($vacancy->department)

Department

{{ $vacancy->department->name }}

@endif @if($vacancy->location)

Location

{{ $vacancy->location }}

@endif @if($vacancy->employment_type)

Employment type

{{ ucfirst($vacancy->employment_type) }}

@endif @if($vacancy->salary_range)

Compensation

{{ $vacancy->salary_range }}

@endif

Before you submit

  • Use a current résumé tailored to this role.
  • Your cover letter should connect your experience to our requirements.
  • Double-check contact details and file formats (PDF, DOC, DOCX).

Application form

@csrf

Personal information

@error('first_name')

{{ $message }}

@enderror
@error('last_name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror
@error('phone')

{{ $message }}

@enderror
@error('address')

{{ $message }}

@enderror

Professional background

@error('current_position')

{{ $message }}

@enderror
@error('current_company')

{{ $message }}

@enderror
@error('experience_years')

{{ $message }}

@enderror
@error('education_level')

{{ $message }}

@enderror

Cover letter

@error('cover_letter')

{{ $message }}

@enderror

Résumé & documents

PDF, DOC, or DOCX · max 5 MB

@error('resume')

{{ $message }}

@enderror

Multiple files allowed · max 5 MB each

@error('additional_documents')

{{ $message }}

@enderror

References (optional)

@error('reference_name')

{{ $message }}

@enderror
@error('reference_position')

{{ $message }}

@enderror
@error('reference_company')

{{ $message }}

@enderror
@error('reference_email')

{{ $message }}

@enderror
@error('privacy_consent')

{{ $message }}

@enderror
CancelCancel
@include('frontend.partials.newsletter') @endsection