{!! Form::open(['id' => 'assign-form', 'method' => 'PUT', 'class' => 'modal-dialog']) !!}
×
Asigna Gerencia
Cliente a asignar:
{!! Form::hidden('client_id', NULL, ['id' => 'client-id']) !!}
{!! Form::select('management_id', [NULL => 'Seleccione una gerencia'] + App\Management::lists('name', 'id')->all(), NULL, ['class' => 'form-control', 'id' => 'management_id']) !!}
Cargando ejecutivos
{!! Form::select('executive_id', [], NULL, ['class' => 'form-control', 'id' => 'executive_id', 'style' => 'display : none;']) !!}
{!!Form::text('comments', null, ['class' => 'form-control', 'id' => 'reassign-comments-input', 'maxlength' => 255, 'placeholder' => 'Comentarios'])!!}
{!! Form::close() !!}