@extends('layouts.v2.frontend-user-backend') @section('title', '| FREE END-OF-LIFE PLAN') @section('content') @include('frontend.forms.v2.End-Of-Life-Plan.stepIndicator')
@csrf @php $aid = request()->input('aid') ?? 0; $typeStep = request()->input('step') ?? $serviceb['type'][$aid]; @endphp
@if(isset($serviceb['type']) && in_array('location', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'location')

Visitation location

Where will your visitation be held?

@php $visitation_location = json_decode($endoflifePlanForm->visitation_service_location, true); @endphp
e.g. Kendrick Funeral Home, my home
e.g. Street, City, State ZIP Code
@endif @if(isset($serviceb['type']) && in_array('guests', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'guests') @php $receive_your_ashesArray = json_decode($endoflifePlanForm->visitation_service_guests, true) @endphp

Guests

Who may attend your visitation?

Are there any specific individuals you wish to be contacted to attend?

0) ? 'checked' : '' }}>

Yes

No

@if(!empty($receive_your_ashesArray['multipleRecords']) && count($receive_your_ashesArray['multipleRecords']) > 0) @foreach($receive_your_ashesArray['multipleRecords'] as $index => $receive_your_ashes)
Individual
Remove
e.g. Street, City, State ZIP Code
@endforeach @else
Individual
Remove
e.g. Street, City, State ZIP Code
@endif
@endif @if(isset($serviceb['type']) && in_array('ashes', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'ashes')

Viewing

Do you wish to have your ashes present?

ashes_present) && $endoflifePlanForm->ashes_present == 'yes' ? "checked" : ''}}>
ashes_present) && $endoflifePlanForm->ashes_present == 'no' ? "checked" : ''}}>
@endif @if(isset($serviceb['type']) && in_array('music', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'music') @php $receive_your_ashesArray = json_decode($endoflifePlanForm->visitation_service_music, true) @endphp

Visitation details

Name the song(s), genre, or artist if playing recorded music. Name the song(s), genre, or singer/musician if live music will be played.
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 @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 visitation?

@php $speakerArray = json_decode($endoflifePlanForm->visitation_service_speaker, true) @endphp
@if(!empty($endoflifePlanForm->visitation_service_speaker) && count($speakerArray) > 0) @foreach($speakerArray as $index => $speaker)
Speaker
Remove
e.g. Street, City, State ZIP Code
@endforeach @else
Speaker
Remove
e.g. Street, City, State ZIP Code
@endif
@endif @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 cremation?

visitation_service_instructions_status) && $endoflifePlanForm->visitation_service_instructions_status == "yes" ? 'checked' : ''}}>
visitation_service_instructions_status) && $endoflifePlanForm->visitation_service_instructions_status == "no" ? 'checked' : ''}}>
@php $visitation_instructionsArray = json_decode($endoflifePlanForm->visitation_service_instructions, true) @endphp @if(!empty($endoflifePlanForm->visitation_service_instructions) && count($visitation_instructionsArray) > 0) @foreach($visitation_instructionsArray as $index => $details)
Describe your wishes in complete sentences:
Remove
e.g. I would like my husband to give a toast and speech at my visitation.
@endforeach @else
Describe your wishes in complete sentences:
Remove
e.g. I would like my husband to give a toast and speech at my visitation.
@endif
@endif
@foreach ($serviceb['type'] as $service) @if ($service === $typeStep) @if ($aid == 0) @else @endif @endif @endforeach
@endsection @section('page-js') @endsection