@extends('layouts.app') @section('title') {{ __('messages.patient.patient_details') }} @endsection @section('page_css') @endsection @section('header_toolbar')

@yield('title')

@if (!Auth::user()->hasRole('Doctor|Accountant|Case Manager|Nurse|Patient')) {{ __('messages.common.edit') }} @endif {{ __('messages.common.back') }}
@endsection @section('content')
@include('flash::message') @include('patients.show_fields') @include('patients.advanced_payments.edit_modal') @include('patients.vaccinations.edit_modal') {{Form::hidden('advancedPaymentUrl',url('advanced-payments'),['id'=>'showPatientAdvancedPaymentUrl'])}} {{Form::hidden('advancePaymentCreateUrl',route('advanced-payments.store'),['id'=>'showPatientAdvancePaymentCreateUrl'])}} {{Form::hidden('patientUrl',url('patients'),['id'=>'showPatientUrl'])}} {{Form::hidden('vaccinatedPatientUrl',route('vaccinated-patients.index'),['id'=>'showVaccinatedPatientUrl'])}}
@endsection {{-- let advancedPaymentUrl = "{{url('advanced-payments')}}"--}} {{-- let advancePaymentCreateUrl = "{{ route('advanced-payments.store') }}"--}} {{-- let patientUrl = "{{ url('patients') }}"--}} {{-- let vaccinatedPatientUrl = "{{ route('vaccinated-patients.index') }}";--}} {{-- --}} {{-- --}}