@if(\Auth::user()->type !='employee')
{{ Form::label('complaint_from', __('Complaint From'),['class'=>'form-label'])}}
{{ Form::select('complaint_from', $employees,null, array('class' => 'form-control select','required'=>'required')) }}
@endif
{{Form::label('complaint_against',__('Complaint Against'),['class'=>'form-label'])}}
{{Form::select('complaint_against',$employees,null,array('class'=>'form-control select'))}}
{{Form::label('title',__('Title'),['class'=>'form-label'])}}
{{Form::text('title',null,array('class'=>'form-control'))}}
{{Form::label('complaint_date',__('Complaint Date'),['class'=>'form-label'])}}
{{Form::date('complaint_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()}}