@if(\Auth::user()->type != 'employee')
{{ Form::label('warning_by', __('Warning By*'),['class'=>'form-label'])}}
{{ Form::select('warning_by', $employees,null, array('class' => 'form-select','required'=>'required')) }}
@endif
{{Form::label('warning_to',__('Warning To*'),['class'=>'form-label'])}}
{{Form::select('warning_to',$employees,null,array('class'=>'form-select','required'=>'required'))}}
{{Form::label('subject',__('Subject*'),['class'=>'form-label'])}}
{{Form::text('subject',null,array('class'=>'form-control','required'=>'required'))}}
{{Form::label('warning_date',__('Warning Date*'),['class'=>'form-label'])}}
{{Form::date('warning_date',null,array('class'=>'form-control ','required'=>'required'))}}
{{Form::label('description',__('Description'),['class'=>'form-label'])}}*
{{Form::textarea('description',null,array('class'=>'form-control','placeholder'=>__('Enter Description'),'required'=>'required'))}}
{{Form::close()}}