@extends('layouts.admin') @section('contenido') {!!Form::open(array('url'=> route('usuario.update',$usuario->codUsuario) ,'method'=>'PUT','autocomplete'=>'off', 'files'=>true))!!}
Ingrese Nombre de Usuario
{{-- Código de Usuario para que función el unique de los campos --}}
@if ($errors->has('nombres'))
{{ $errors->first('nombres') }}
@endif
Ingrese número de Documento
@if ($errors->has('numDocumento'))
{{ $errors->first('numDocumento') }}
@endif
¿Cúal es su Ubicación?
@if ($errors->has('direccion'))
{{ $errors->first('direccion') }}
@endif
Ingrese su número Teléfonico
@if ($errors->has('telefono'))
{{ $errors->first('telefono') }}
@endif
Ingrese Correo Electrónico
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if (auth()->user()->tipo == 'ADMINISTRADOR')
Seleccione un Rol
@if ($errors->has('tipo'))
{{ $errors->first('tipo') }}
@endif
@else @endif
Seleccione Consultorio
@if ($errors->has('codConsultorio'))
{{ $errors->first('codConsultorio') }}
@endif
@if (auth()->user()->tipo == 'ADMINISTRADOR')
Contraseña
@endif
Seleccione Fotografia
@if ($errors->has('foto'))
{{ $errors->first('foto') }}
@endif
@if (!empty($usuario->foto)) @endif
{{ Form::close() }} @endsection