{!! Form::open(['id' => 'assign-form', 'method' => 'PUT', 'class' => 'modal-dialog']) !!}

Asigna Ejecutivo

{!! Form::hidden('client_id', NULL, ['id' => 'client-id']) !!}
{!! Form::select('executive_id', 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']) !!}
{!! Form::textarea('comments', NULL, ['id' => 'comments', 'class' => 'form-control', 'placeholder' => 'Comentarios', 'rows' => 3]) !!}
{!! Form::close() !!}