@extends ('layouts.template') @section('content')
New Patient
@if (session('message'))
{{ session('message') }}
@endif
@include('app.patient.create-patient.demographics-form')
@if($pro->pro_type === 'ADMIN')
@include('app.patient.create-patient.insurance-coverage-form')
@endif
@if($pro->pro_type === 'ADMIN') @include('app.patient.create-patient.create-patient-script-templates') @else @include('app.patient.create-patient.insurance-coverage-form') @endif
@endsection