@include('forms/elements/header_start') @include('patients/elements/header_end')
{{-- @include('patients.elements.list')--}}
{{--
--}} {{--
--}} {{--
--}} {{--
20% complete
--}} {{--
--}} {{--

Animated stripes

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}}

Add Surgery

@if(Session::has('success'))

The surgery details have been added successfully.

@elseif(Session::has('error'))

Password does not match

@endif
@csrf
@if ($errors->has('surgery_name')) {{ $errors->first('surgery_name') }} @endif
@if ($errors->has('surgery_date')) {{ $errors->first('surgery_date') }} @endif
@if ($errors->has('sedation_type')) {{ $errors->first('sedation_type') }} @endif
@if ($errors->has('complications')) {{ $errors->first('complications') }} @endif
@if ($errors->has('anasthetic_complications')) {{ $errors->first('anasthetic_complications') }} @endif

Surgical History

@foreach($surgicalHistory as $surgery) @endforeach
Surgery Name Date of Surgery Sedation Type Created Updated
{{ $surgery->surgery_name }} {{ date('m/d/Y', strtotime($surgery->surgery_date)) }} {{ $surgery->sedation_type }} {{ date('m/d/Y', strtotime($surgery->created_at)) }} {{ $surgery->updated_at->diffForHumans() }}
{{-- --}} {{--
--}} {{--
--}} {{-- Card image cap--}} {{--

Contact Us

--}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- --}}
@include('forms/elements/footer_start') @include('forms/elements/footer_end')