@extends('layouts.admin') @section('contenido') {!! Form::open(['url' => 'culminaratencion', 'method' => 'POST', 'autocomplete' => 'off']) !!} {{ Form::token() }}
{{--
--}} {{--
--}}
@php ($val_fecha = !is_null($paciente->fechaNac) ? HistoriaController::calculaedad2($paciente->fechaNac) : '')

@if (isset($triaje))
@php($val_precionArterial = empty(old('precionArterial')) ? $triaje->precionArterial : old('precionArterial'))
@if ($errors->has('precionArterial'))
{{ $errors->first('precionArterial') }}
@endif
@php($val_temperatura = empty(old('temperatura')) ? $triaje->temperatura : old('temperatura'))
@if ($errors->has('temperatura'))
{{ $errors->first('temperatura') }}
@endif
@php($val_fRespiratoria = empty(old('fRespiratoria')) ? $triaje->fRespiratoria : old('fRespiratoria'))
@if ($errors->has('fRespiratoria'))
{{ $errors->first('fRespiratoria') }}
@endif
@php($val_fCardiaca = empty(old('fCardiaca')) ? $triaje->fCardiaca : old('fCardiaca'))
@if ($errors->has('fCardiaca'))
{{ $errors->first('fCardiaca') }}
@endif
@php($val_saturacion = empty(old('saturacion')) ? $triaje->saturacion : old('saturacion'))
@if ($errors->has('saturacion'))
{{ $errors->first('saturacion') }}
@endif
@php($val_peso = empty(old('peso')) ? $triaje->peso : old('peso'))
@if ($errors->has('peso'))
{{ $errors->first('peso') }}
@endif
@php($val_talla = empty(old('talla')) ? $triaje->talla : old('talla'))
@if ($errors->has('talla'))
{{ $errors->first('talla') }}
@endif
@php($val_imc = empty(old('imc')) ? $triaje->imc : old('imc'))
@if ($errors->has('imc'))
{{ $errors->first('imc') }}
@endif
@php($val_estadoFisico = empty(old('estadoFisico')) ? $triaje->estadoFisico : old('estadoFisico'))
@if ($errors->has('estadoFisico'))
{{ $errors->first('estadoFisico') }}
@endif
@else

EL PACIENTE NO TIENE NINGUNA EVALUACIÓN EN TRIAJE

@endif

{{ Form::close() }} @push('scripts') @endpush @endsection