{!! Form::label('phone', 'Número de contacto', ['class' => 'control-label']) !!}
{!! Form::text('phone', old('phone', (isset($patient) and $patient->phone) ? $patient->phone->phone : ''), ['class' => 'form-control underlined', 'placeholder' => 'Número de contacto (opcional)', 'maxlength' => 15]) !!}
{!! Form::label('gender', 'Sexo', ['class' => 'control-label']) !!}
{!! Form::select('gender', config('constants.gender'), old('gender', isset($patient) ? $patient->gender : ''), ['class' => 'form-control underlined', isset($show) ? 'readonly' : '']) !!}
{!! Form::label('type', 'Tipo de usuario', ['class' => 'control-label']) !!}
{!! Form::select('type', config('constants.patientTypeString'), old('type', isset($patient) ? $patient->type : 2), ['class' => 'form-control underlined', isset($show) ? 'readonly' : '']) !!}
{!! Form::label('state', 'Departamento', ['class' => 'control-label']) !!}
{!! Form::label('zone', 'Zona de residencia habitual', ['class' => 'control-label']) !!}
{!! Form::select('zone', config('constants.residenceZone'), old('zone', isset($patient) ? $patient->zone : ''), ['class' => 'form-control']) !!}