{!! Form::open(['url' => ['/notaries/update', $notary->id], 'method' => 'POST']) !!}
{!! Form::label('notary_number', 'Número de la Notaria:') !!}
{!! Form::text('notary_number', $notary->notary_number, [
'class' => 'form-control',
'required' => 'true',
'placeholder' => 'Ingrese el número de notaria',
'autofocus' => 'true'
]) !!}
{!! Form::label('name', 'Nombre:') !!}
{!! Form::text('name', $notary->name, [
'class' => 'form-control',
'required' => 'true',
'minlength' => '3',
'maxlength' => '80',
'placeholder' => 'Ingrese el nombre',
'autofocus' => 'true'
]) !!}
{!! Form::label('notary', 'Notario:') !!}
{!! Form::text('notary', $notary->notary, [
'class' => 'form-control',
'required' => 'true',
'minlength' => '3',
'maxlength' => '80',
'placeholder' => 'Ingrese el nombre del notario',
'autofocus' => 'true'
]) !!}
{!! Form::label('phone', 'Teléfono:') !!}
{!! Form::text('phone', $notary->phone, [
'class' => 'form-control',
'required' => 'true',
'minlength' => '3',
'maxlength' => '80',
'placeholder' => 'Ingrese el telefono',
'autofocus' => 'true'
]) !!}
{!! Form::label('email', 'Correo Electrónico:') !!}
{!! Form::email('email', $notary->email, [
'class' => 'form-control',
'required' => 'true',
'maxlength' => '80',
'placeholder' => 'Ingrese el correo electrónico'
]) !!}
{!! Form::label('address', 'Dirección:') !!}
{!! Form::text('address', $notary->address, [
'class' => 'form-control',
'required' => 'true',
'minlength' => '3',
'maxlength' => '80',
'placeholder' => 'Ingrese la dirección',
'autofocus' => 'true'
]) !!}
{!! Form::label('state', 'Estado:') !!}
{!! Form::select('state', [
'Jalisco, Guadalajara' => 'Jalisco, Guadalajara',
'Estado de México, Naucalpan' => 'Estado de México, Naucalpan',
'Nuevo León, Monterrey' => 'Nuevo León, Monterrey',
'Ciudad de México' => 'Ciudad de México'], $notary->state, [
'class' => 'form-control',
'required' => 'true',
'placeholder' => 'Eliga un estado'
]) !!}
Regresar
{!! Form::close() !!}