{!! Form::select('type', $types, null,['class' => 'form-control', 'placeholder' => 'Select type', 'required']) !!}
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
{!! Form::text('reason', null, ['class' => 'form-control', 'placeholder' => 'Enter Reason', 'required']) !!}
@if ($errors->has('reason'))
{{ $errors->first('reason') }}
@endif