ID
{{ $livingWillForm['id'] }}
Do you want to appoint someone to
make your health care decisions if
you are unable to?
{{ $livingWillForm['health_care_decisions'] ?? "Not specified" }}
Do you want to list your health care
preferences so caregivers have
instruction to follow?
{{ $livingWillForm['preferences'] ?? "Not specified" }}
Location
What state do you live in?
{{ $livingWillForm['live_state'] ?? "Not specified"}}
Care Choices
Sustaining Treatment
@if($livingWillForm['sustaining_treatment'] == 'yes')
I want to receive this treatment
@elseif($livingWillForm['sustaining_treatment'] == 'no')
I do NOT want to receive this treatment
@else
Not specified
@endif
Artificially Provided Food and Water
@if($livingWillForm['artificially_food'] == 'yes')
I want to receive this treatment
@elseif($livingWillForm['artificially_food'] == 'no')
I do NOT want to receive this treatment
@else
Not specified
@endif
Care if Permanently Unconscious
Life Sustaining Treatment
@if($livingWillForm['p_sustaining_treatment'] == 'yes')
I want to receive this treatment
@elseif($livingWillForm['p_sustaining_treatment'] == 'no')
I do NOT want to receive this treatment
@else
Not specified
@endif
Artificially Provided Food and Water
@if($livingWillForm['p_artificially_food'] == 'yes')
I want to receive this treatment
@elseif($livingWillForm['p_artificially_food'] == 'no')
I do NOT want to receive this treatment
@else
Not specified
@endif
Your Info
Who is this Living Will being created for?
@php
$yourInfo = json_decode($livingWillForm['your_information'], true);
@endphp
Name
{{ $yourInfo['name'] ?? 'Not specified' }}
Street Address1
{{ $yourInfo['street_1'] ?? 'Not specified' }}
Street Address2
{{ $yourInfo['street_2'] ?? 'Not specified' }}
City
{{ $yourInfo['city'] ?? 'Not specified' }}
State
{{ $yourInfo['state_name'] ?? 'Not specified' }}
Country
{{ $yourInfo['country_name'] ?? 'Not specified' }}
Zip Code
{{ $yourInfo['zip_code'] ?? 'Not specified' }}
Birthdate
{{ $yourInfo['bdate'] ?? 'Not specified' }}
Gender
{{ $yourInfo['gender'] ?? 'Not specified' }}
@if($livingWillForm['health_care_decisions'] == 'yes')
Proxy
If I need someone to speak for me
@php
$proxy = json_decode($livingWillForm['proxy'], true);
@endphp
Proxy Name
{{ $proxy['proxy_name'] ?? 'Not specified' }}
Proxy Street
{{ $proxy['proxy_street'] ?? 'Not specified' }}
Proxy Town
{{ $proxy['proxy_town'] ?? 'Not specified' }}
Proxy State
{{ $proxy['proxy_state_name'] ?? 'Not specified' }}
Proxy Country
{{ $proxy['proxy_country_name'] ?? 'Not specified' }}
Proxy Zip Code
{{ $proxy['proxy_zip_code'] ?? 'Not specified' }}
Proxy Relationship
{{ $proxy['proxy_relationship'] ?? 'Not specified' }}
Alternate Health Care Proxy
@php
$alternateProxy = json_decode($livingWillForm['alternate_proxy'], true);
@endphp
Alternative Name
{{ $alternateProxy['alternative_name'] ?? 'Not specified' }}
Alternative Street
{{ $alternateProxy['alternative_street'] ?? 'Not specified' }}
Alternative Town
{{ $alternateProxy['alternative_town'] ?? 'Not specified' }}
Alternative Country
{{ $alternateProxy['alternative_country_name'] ?? 'Not specified' }}
Alternative State
{{ $alternateProxy['alternative_state_name'] ?? 'Not specified' }}
Alternative Zip Code
{{ $alternateProxy['alternative_zip_code'] ?? 'Not specified' }}
Alternative Phone
{{ $alternateProxy['alternative_phone'] ?? 'Not specified' }}
Alternative Relationship
{{ $alternateProxy['alternative_relationship'] ?? 'Not specified' }}
How much authority do you want
your health care proxy to have?
{{ $livingWillForm['proxy_authority'] }}
Instructions for Health Care Proxy
Have access to my medical records
@if(!empty($livingWillForm['medical_records']))
yes
@else
No
@endif
@if($livingWillForm['proxy_authority'] != "Must follow my listed directions but is also able to make decisions not covered in this document")
Decide if I need tube feeding
@if(!empty($livingWillForm['tube_feeding']))
Yes
@else
No
@endif
@endif
@endif
Final Details
@php
$contacts = json_decode($livingWillForm['contacts'], true);
@endphp
@if (is_array($contacts))
@foreach ($contacts as $contact)
Name
{{ $contact['full_name'] ?? 'Not specified' }}
Phone Number
{{ $contact['phone_number'] ?? 'Not specified' }}
@endforeach
@else
Contacts
@if($livingWillForm['contact_status'] == "no")
No
@else
Not specified
@endif
@endif
Signing Details
@php
$signingDetails = json_decode($livingWillForm['signing_details'], true);
@endphp
Signing
{{ $signingDetails['signing'] ?? 'Not specified' }}
Date
{{ $signingDetails['date'] ?? 'Not specified' }}
City
{{ $signingDetails['city'] ?? 'Not specified' }}
Created At
{{ isset($livingWillForm['created_at']) ? date('m/d/Y h:i A', strtotime($livingWillForm['created_at'])) : 'Not specified' }} (EST)
Updated At
{{ isset($livingWillForm['updated_at']) ? date('m/d/Y h:i A', strtotime($livingWillForm['updated_at'])) : 'Not specified' }} (EST)