@extends('layouts.careers') @section('title', $job->title) @section('content')

{{ $job->title }}

@if($job->warehouse) {{ $job->warehouse->name }}@endif @if($job->department){{ $job->department->name }}@endif @if($job->designation){{ $job->designation->name }}@endif @if($job->closing_date){{ __('Closes') }} {{ $job->closing_date->format('M j, Y') }}@endif
{!! $job->descriptionHtml() !!}
{{ __('Apply for this role') }}
@csrf
{{ __('PDF or Word, max 10MB') }}
@if($job->questions->isNotEmpty())
{{ __('Additional questions') }}
@foreach($job->questions as $q)
@if($q->field_type === 'textarea') @elseif($q->field_type === 'select' && is_array($q->options)) @elseif($q->field_type === 'yes_no') @else is_required) required @endif> @endif
@endforeach @endif @if ($errors->any())
{{ $errors->first() }}
@endif

@endsection @push('scripts') @endpush