@extends('layouts.app') @section('content')
Review patient information and prescription request
{{ $patient['first_name'] }}
{{ $patient['last_name'] }}
{{ \Carbon\Carbon::parse($patient['date_of_birth'])->format('m/d/Y') }}
{{ $patient['gender'] }}
{{ $patient['contact_number'] }}
{{ $patient['email'] }}
{{ $patient['street_address'] }}
{{ $patient['city'] }}, {{ $patient['state'] }} {{ $patient['zip_code'] }}
{{ $patient['chief_complaint'] }}
{{ $patient['medication'] }}
{{ $patient['is_pregnant'] === 'yes' ? 'Yes' : 'No' }}
{{ $patient['is_breastfeeding'] === 'yes' ? 'Yes' : 'No' }}
{{ $patient['medical_conditions_list'] }}
@elseNone reported
@endif{{ $patient['other_medications_list'] }}
@elseNone reported
@endif{{ $patient['drug_allergies_list'] }}
@elseNone reported
@endif{{ $patient['pharmacy'] }}
@if($patient['request_type'] === 'refill') Refill Request @else New Prescription @endif