@extends('layouts.app') @section('content')

{{__('Document nou pentru pacientul: '). $patient->first_name.' '.$patient->last_name}}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if ($errors->has('s_template')) {{ $errors->first('s_template') }} @endif
@if ($errors->has('registry_no')) {{ $errors->first('registry_no') }} @endif
@if ($errors->has('rx_pulmonary')) {{ $errors->first('rx_pulmonary') }} @endif
@if ($errors->has('spirometry')) {{ $errors->first('spirometry') }} @endif
@if ($errors->has('vems_reduction')) {{ $errors->first('vems_reduction') }} @endif
@if ($errors->has('distal')) {{ $errors->first('distal') }} @endif
@if ($errors->has('oxygen_saturation')) {{ $errors->first('oxygen_saturation') }} @endif
@if ($errors->has('av')) {{ $errors->first('av') }} @endif
@if ($errors->has('heart_rate')) {{ $errors->first('heart_rate') }} @endif
@endsection