@if(\Auth::user()->type!='employee')
{{ Form::label('employee_id', __('Employee'),['class'=>'form-label'])}}
{{ Form::select('employee_id', $employees,null, array('class' => 'form-control select','required'=>'required')) }}
@endif
{{Form::label('notice_date',__('Notice Date'),['class'=>'form-label'])}}
{{Form::date('notice_date',null,array('class'=>'form-control'))}}
{{Form::label('resignation_date',__('Resignation Date'),['class'=>'form-label'])}}
{{Form::date('resignation_date',null,array('class'=>'form-control'))}}
{{Form::label('description',__('Description'),['class'=>'form-label'])}}
{{Form::textarea('description',null,array('class'=>'form-control','placeholder'=>__('Enter Description')))}}
{{Form::close()}}