@if(\Auth::user()->type != 'employee')
{{ Form::label('warning_by', __('Warning By'),['class'=>'form-label'])}}
{{ Form::select('warning_by', $employees,null, array('class' => 'form-control select','required'=>'required')) }}
@endif
{{Form::label('warning_to',__('Warning To'),['class'=>'form-label'])}}
{{Form::select('warning_to',$employees,null,array('class'=>'form-control select'))}}
{{Form::label('subject',__('Subject'),['class'=>'form-label'])}}
{{Form::text('subject',null,array('class'=>'form-control'))}}
{{Form::label('warning_date',__('Warning Date'),['class'=>'form-label'])}}
{{Form::date('warning_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()}}