exclude_from_expiry ? 'checked' : '' }}>
{!! Form::label('first_name', __('models/stafprofile.fields.name') .' *') !!}
{!! Form::text('name', null, ['class' => $errors->has('name') ? 'form-control is-invalid' : 'form-control']) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{!! Form::label('last_name', __('models/stafprofile.fields.last_name') .' *') !!}
{!! Form::text('last_name', null, ['class' => $errors->has('last_name') ? 'form-control is-invalid' : 'form-control']) !!}
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
{!! Form::label('mobile_no', 'Mobile No *') !!}
{!! Form::tel('mobile_no', old('mobile_no', $profile->mobile_no ?? ''), [
'class' => $errors->has('mobile_no') ? 'form-control is-invalid' : 'form-control',
'aria-describedby' => 'mobile_no_help'
]) !!}
Please enter your phone number including the country code (e.g. 971########).
@if ($errors->has('mobile_no'))
{{ $errors->first('mobile_no') }}
@endif
{!! Form::label('home_mobile_no', 'Home Mobile No') !!}
{!! Form::tel('home_mobile_no', old('home_mobile_no', $profile->home_mobile_no ?? ''), [
'class' => 'form-control',
'aria-describedby' => 'home_mobile_no_help'
]) !!}
{!! Form::label('staf_type','Please Mention'.' *') !!}
{!! Form::text('', null, ['class' => $errors->has('name') ? 'form-control is-invalid' : 'form-control','id'=>'others_field']) !!}
@if ($errors->has('staf_type'))
{{ $errors->first('staf_type') }}
@endif
@include(strtolower(__('models/stafprofile.plural')) . '.nationality')
{!! Form::label('basic_salary', __('models/stafprofile.fields.basic_salary')) !!}
{!! Form::text('basic_salary', null, ['class' => $errors->has('basic_salary') ? 'form-control is-invalid' : 'form-control']) !!}
@if ($errors->has('basic_salary'))
{{ $errors->first('basic_salary') }}
@endif
{!! Form::label('total_salary', __('models/stafprofile.fields.total_salary')) !!}
{!! Form::text('total_salary', null, ['class' => $errors->has('total_salary') ? 'form-control is-invalid' : 'form-control']) !!}
@if ($errors->has('total_salary'))
{{ $errors->first('total_salary') }}
@endif
{!! Form::label('overtime_rate', __('models/stafprofile.fields.overtime_rate')) !!}
{!! Form::text('overtime_rate', null, ['class' => $errors->has('overtime_rate') ? 'form-control is-invalid' : 'form-control']) !!}
@if ($errors->has('overtime_rate'))
{{ $errors->first('overtime_rate') }}
@endif
{!! Form::label('last_vacation_days', __('models/stafprofile.fields.last_vacation_days')) !!}
{!! Form::text('last_vacation_days', null, ['class' => $errors->has('last_vacation_days') ? 'form-control is-invalid vic_day' : 'form-control vic_day', 'readonly' => true]) !!}
@if ($errors->has('last_vacation_days'))
{{ $errors->first('last_vacation_days') }}
@endif
{!! Form::label('last_increment_amount', __('models/stafprofile.fields.last_increment_amount')) !!}
{!! Form::number('last_increment_amount', null, ['class' => $errors->has('last_increment_amount') ? 'form-control is-invalid' : 'form-control']) !!}
@if ($errors->has('last_increment_amount'))
{{ $errors->first('last_increment_amount') }}
@endif
@endif