@extends('layouts.app') @section('title') {{ __('View patient') }} @endsection @section('breadcrumb')

{{ __('Patients') }}

@endsection @section('content') @if (session('danger'))
{{ session('danger') }}
@endif @if (session('date'))
{{ session('date') }}
@endif

{{ __('View Patient') }}

@csrf @method('put') @include('admin.patients._form')
@include('admin.patients.rename_file')
@isset($_GET['id']) @include('admin.patients._patient_modal') @endisset @endsection @section('scripts') @cannot('bulk_action_patient') @endcan @endsection