@extends('layouts.admin') @section('contenido') {!! Form::open(['url' => route('paciente.update', $paciente->codPaciente), 'method' => 'PUT', 'autocomplete' => 'off', 'files' => true]) !!} {{-- --}}
Ingrese el Nombre de Paciente
@if ($errors->has('nombresedit'))
{{ $errors->first('nombresedit') }}
@endif
Ingrese el número de Documento
@if ($errors->has('numDocumentoedit'))
{{ $errors->first('numDocumentoedit') }}
@endif
Ingrese la Dirección
@if ($errors->has('direccionedit'))
{{ $errors->first('direccionedit') }}
@endif
Ingrese el número de Teléfono
@if ($errors->has('telefonoedit'))
{{ $errors->first('telefonoedit') }}
@endif
Ingrese el Correo Electrónico
@if ($errors->has('correoedit'))
{{ $errors->first('correoedit') }}
@endif
Ingrese Tipo de Alergia
@php($val_alergia = empty(old('alergiaedit')) ? $paciente->alergia : old('alergiaedit'))
@if ($errors->has('alergiaedit'))
{{ $errors->first('alergiaedit') }}
@endif
Ingrese el nombre de la enfermedad
@php($val_enfermedad = empty(old('enfermedad')) ? $paciente->enfermedad : old('enfermedad'))
@if ($errors->has('enfermedad'))
{{ $errors->first('enfermedad') }}
@endif
Ingrese Fecha de Nacimiento
@if ($errors->has('fechaNac'))
{{ $errors->first('fechaNac') }}
@endif
{{-- ----------------------------------------------------------------------------------------------------------------- --}}
Seleccione Género
@if ($errors->has('Genero'))
{{ $errors->first('Genero') }}
@endif
Ingrese su Fotografia
{{ Form::close() }} @endsection