@extends('layouts.frontend') @section('title', '| FREE END-OF-LIFE PLAN') @section('content') @include('frontend.forms.End-Of-Life-Plan.stepIndicator')
@csrf @php $aid = request()->input('aid') ?? 0; $typeStep = request()->input('step') ?? $serviceb['type'][$aid]; @endphp
{{-- Location --}} @if(isset($serviceb['type']) && in_array('location', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'location')
Memorial Service Location
Where will your memorial service be held?
@php $memorial_location = json_decode($endoflifePlanForm->memorial_service_held, true); @endphp
e.g. Kendrick Funeral Home, my family's cabin
e.g. Street, City, State ZIP Code
Frequently Asked Questions

Where should I hold my memorial service?

A memorial service can be held anywhere, and the location depends on whether you want a formal service or a more intimate affair. The service can be held at an event space like a banquet hall or restaurant, or somewhere of personal significance such as a house of worship, a family home or a park.
@endif {{-- Guests --}} @if(isset($serviceb['type']) && in_array('guests', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'guests') @php $memorial_gestArray = json_decode($endoflifePlanForm->memorial_guests, true) @endphp
Guests
Who may attend your memorial service?
Are there any specific individuals you wish to be contacted to attend?
?
Specify any individuals your family may not know or think to contact upon your passing.
@if(!empty($memorial_gestArray['multipleRecords']) && count($memorial_gestArray['multipleRecords']) > 0) @foreach($memorial_gestArray['multipleRecords'] as $index => $memorial_gest)
Individual
Remove
@endforeach @else
Individual
Remove
@endif
@endif {{-- Music/Readings --}} @if(isset($serviceb['type']) && in_array('music', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'music') @php $memorial_your_serviceArray = json_decode($endoflifePlanForm->memorial_service_music, true) @endphp
Memorial Service Details
e.g. I would like classical music by Beethoven to be playing during the visitation.
e.g. I would like my sister to read "The Dash" by Linda Ellis.
@endif {{-- Speakers --}} @if(isset($serviceb['type']) && in_array('speakers', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'speakers')
Speaker
Who would you like to speak at your memorial service?
@php $speakerArray = json_decode($endoflifePlanForm->memorial_service_speaker, true) @endphp
@if(!empty($endoflifePlanForm->memorial_service_speaker) && count($speakerArray) > 0) @foreach($speakerArray as $index => $speaker)
Speaker
Remove
@endforeach @else
Speaker
Remove
@endif
@endif {{-- Other --}} @if(isset($serviceb['type']) && in_array('other', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'other')
Additional Instructions
Do you wish to include any other instructions regarding your memorial service?
memorial_service_instructions) ? 'checked' : '' }}> memorial_service_instructions) ? 'checked' : '' }}>
@php $memorial_minstructionsArray = json_decode($endoflifePlanForm->memorial_service_instructions, true) @endphp @if(!empty($endoflifePlanForm->memorial_service_instructions) && count($memorial_minstructionsArray) > 0) @foreach($memorial_minstructionsArray as $index => $details)
Describe your wishes in complete sentences:
Remove
e.g. I would like balloons to be released into the air at the end of the service.
@endforeach @else
Describe your wishes in complete sentences:
Remove
e.g. I would like balloons to be released into the air at the end of the service.
@endif
@endif
@endsection @section('page-js') @endsection