{{-- japanese college --}}
@if($staff['mtb_kaigo_id'] == 0)
{{-- kaigo college --}}
@else
@endif
{!! Form::select("foreigner_vacation[mtb_japanese_id]", $japanese_list, $staff['mtb_japanese_id'], [
'class' => 'form-select',
]) !!}
{!! Form::select("foreigner_vacation[mtb_kaigo_id]", $kaigo_list, $staff['mtb_kaigo_id'], [
'class' => 'form-select',
]) !!}
{!! Form::select("foreigner_vacation[mtb_vacation_id]", $vacation_list, (isset($foreigner_vacation)) ? $foreigner_vacation['mtb_vacation_id'] : '', [
'class' => 'form-select',
]) !!}
{!! Form::date("foreigner_vacation[from]", (isset($foreigner_vacation)) ? $foreigner_vacation['from'] : '', [
'class' => 'form-control',
]) !!}
〜
{!! Form::date("foreigner_vacation[to]", (isset($foreigner_vacation)) ? $foreigner_vacation['to'] : '', [
'class' => 'form-control',
]) !!}
{!! Form::textarea("foreigner_vacation[remark]", (isset($foreigner_vacation)) ? $foreigner_vacation['remark'] : '', [
'class' => 'form-control',
'rows' => 4,
]) !!}