Send for trial

@if($candidate && !$candidate->compliant ) This candidate is not compliant. @endif
@if($school_selected)
{{$school_selected->title}}
@else
Select school
@endif
    @foreach ($schools as $school)
  • {{$school->title}}
  • @endforeach
@error('school_selected') {{ $message }} @enderror
{{--
@error('job_position') {{ $message }} @enderror
--}}
@if($job_position_selected)
{{$job_position_selected->title}}
@else
Select Job position
@endif
@if($school_selected)
@if($internal_jobs && $internal_jobs->count() > 0)
    @foreach ($internal_jobs as $job)
  • {{$job->title}}
  • @endforeach
@else
No active job positions for this school
@endif
@else
Select school first
@endif
@error('job_position_selected') {{ $message }} @enderror
Calendar
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
Calendar
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
@if($clients_selected && count($clients_selected) > 0) @foreach ($clients_selected as $id => $item)
{{$item['name']}}
@endforeach @endif
    @if($clients) @foreach ($clients as $client)
  • {{$client->user->first_name}} {{$client->user->last_name}}
  • @endforeach @endif
Cancel