{!! Form::open(['id' => 'assign-form', 'method' => 'PUT', 'class' => 'modal-dialog']) !!}
{!! Form::hidden('client_id', NULL, ['id' => 'client-id']) !!}
{!! Form::select('executive_id',
[Auth::user()->id => Auth::user()->full_name] + App\User::where('role', 'executive')->where('management_id', Auth::user()->management_id)->orderBy('last_name')->get()->lists('full_name', 'id')->all(),
null,
['class' => 'form-control', 'id' => 'executive_id'])
!!}