@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('officiant', $serviceb['type']) ) && (isset($serviceb['type']) && $serviceb['type'][$aid] === 'officiant'))

Officiant

Who will be your officiant?

@php $graveside_officiant = json_decode($endoflifePlanForm->graveside_officiant, true); @endphp
Frequently Asked Questions

What is an officiant?

An officiant, sometimes known as a celebrant, functions as the master of ceremonies at a funeral or other service. For those who are religious, an officiant might be a religious leader; however, you can also hire an officiant or ask a friend or family member. An officiant's responsibilities can include greeting guests at the door, conducting the service, and directing guests to the graveside or reception.
@endif {{-- Guests --}} @if(isset($serviceb['type']) && in_array('guests', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'guests')

Guests

Who may attend your graveside service?

@php $graveside_service_guestsArray = json_decode($endoflifePlanForm->graveside_service_guests, true) @endphp

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

@if(!empty($graveside_service_guestsArray['multipleRecords']) && count($graveside_service_guestsArray['multipleRecords']) > 0) @foreach($graveside_service_guestsArray['multipleRecords'] as $index => $graveside_service_guests)
Individual
Remove
e.g. Street, City, State ZIP Code
@endforeach @else
Individual
Remove
e.g. Street, City, State ZIP Code
@endif
@endif {{-- Music/Readings --}} @if(isset($serviceb['type']) && in_array('music', $serviceb['type']) && isset($serviceb['type']) && $serviceb['type'][$aid] === 'music') @php $graveside_your_musicArray = json_decode($endoflifePlanForm->graveside_music, true) @endphp

Graveside service 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 {{-- Speaker --}} @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 graveside service?

@php $speakerArray = json_decode($endoflifePlanForm->graveside_speaker, true) @endphp
@if(!empty($endoflifePlanForm->graveside_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 graveside service?

graveside_other_instructions) ? 'checked' : '' }}>
graveside_other_instructions) ? 'checked' : '' }}>
@php $graveside_instructionsArray = json_decode($endoflifePlanForm->graveside_other_instructions, true) @endphp @if(!empty($endoflifePlanForm->graveside_other_instructions) && count($graveside_instructionsArray) > 0) @foreach($graveside_instructionsArray as $index => $details)
Describe your wishes in complete sentences:
Remove
e.g. I would like my husband and two daughters to each throw a spadeful of dirt on my coffin.
@endforeach @else
Describe your wishes in complete sentences:
Remove
e.g. I would like my husband and two daughters to each throw a spadeful of dirt on my coffin.
@endif
@endif
@foreach ($serviceb['type'] as $service) @if ($service === $typeStep) @if ($aid == 0) @else @endif @endif @endforeach {{-- --}}
@endsection @section('page-js') @endsection