@extends('layouts.public') @section('title', $job->seoTitle()) @section('meta_description', $job->seoDescription()) @push('structured-data') @endpush @section('content')
@if (session('success')) {{ session('success') }} @endif @php $chapters = collect([ __('Role overview') => $job->description, __('Key responsibilities') => $job->responsibilities, __('Requirements') => $job->requirements, ])->filter(fn ($body) => filled($body)); @endphp @foreach ($chapters as $heading => $body)

{{ $heading }}

{!! $body !!}
@endforeach @if ($job->attachment) {{ __('Download the full vacancy notice') }} @endif @if ($job->isOpen())

{{ __('Apply for this position') }}

{{ __('Fields marked with an asterisk are required. Attach your CV as a PDF or Word document, up to 5 MB.') }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @include('public.partials.honeypot', ['formId' => 'apply']) @include('public.partials.captcha')
@else {{ __('Browse other opportunities on the careers page.') }} @endif
@endsection