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

Asigna Gerencia

{!! Form::hidden('client_id', NULL, ['id' => 'client-id']) !!} {!! Form::select('executive_id', [NULL => 'Seleccione un ejecutivo'] + 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::close() !!}