@if (session()->has('message'))
{{ session('message') }}
@endif
{{ $editingId === 0 ? 'New job posting' : ($editingId ? 'Edit job posting' : 'Job editor') }} @if($editingId !== null) @endif
@if($editingId !== null)
@error('title') {{ $message }} @enderror
@error('description') {{ $message }} @enderror
@if($editingId > 0)
{{ __('Screening questions') }}

{{ __('Shown on the public apply form for this job.') }}

@forelse($jobQuestions as $q)
{{ $q->label }} {{ $questionFieldTypes[$q->field_type] ?? $q->field_type }} @if($q->is_required)*@endif
@empty

{{ __('No custom questions yet.') }}

@endforelse
@endif @else @can('Recruitment-create') @endcan

Draft postings stay internal until you publish them.

@endif
All postings
@foreach($jobs as $job) @endforeach
Title Status Actions
{{ $job->title }}
{{ $job->slug }}
@if($job->is_published) {{ __('Live') }} @else {{ __('Draft') }} @endif {{ $job->applications_count }} {{ __('apps') }} @can('Recruitment-edit') @endcan @can('Recruitment-delete') @endcan