@if ($id == 0)
{{ Form::label('application', __('Interviewer*'), ['class' => 'col-form-label']) }}
{{ Form::select('application', $applications, null, ['class' => 'form-control select2', 'required' => 'required']) }}
@endif
{!! Form::label('joining_date', __('Joining Date*'), ['class' => 'col-form-label']) !!}
{!! Form::date('joining_date', null, ['class' => 'form-control ', 'required' => 'required','autocomplete'=>'off']) !!}
{!! Form::label('days_of_week', __('Days Of Week*'), ['class' => 'col-form-label']) !!}
{!! Form::number('days_of_week', null, ['class' => 'form-control ', 'required' => 'required','autocomplete'=>'off','min'=>'0']) !!}
{!! Form::label('salary', __('Salary*'), ['class' => 'col-form-label']) !!}
{!! Form::number('salary', null, ['class' => 'form-control ', 'required' => 'required','autocomplete'=>'off','min'=>'0']) !!}
{{ Form::label('salary_type', __('Salary Type*'), ['class' => 'col-form-label']) }}
{{ Form::select('salary_type', $salary_type, null, ['class' => 'form-select', 'required' => 'required']) }}
{{ Form::label('salary_duration', __('Salary Duration*'), ['class' => 'col-form-label']) }}
{{ Form::select('salary_duration', $salary_duration, null, ['class' => 'form-select', 'required' => 'required']) }}
{{ Form::label('job_type', __('Job Type*'), ['class' => 'col-form-label']) }}
{{ Form::select('job_type', $job_type, null, ['class' => 'form-select', 'required' => 'required']) }}
{{ Form::label('status', __('Status*'), ['class' => 'col-form-label']) }}
{{ Form::select('status', $status, null, ['class' => 'form-select', 'required' => 'required']) }}