@if(session('error')){{--To show error if deduct by controller--}}
{{ session('error') }}
@endif
@if(session('info')){{--To show information if deduct by controller--}}
{{ session('info') }}
@endif
Will your Last Will be used with a Living Trust?
{{ $pourOverWillForm['with_trust'] }}
ID:
{{ $pourOverWillForm['id'] }}
Children
Who are the your children?
{{-- {{ $pourOverWillForm['children'] ?? 'Not specified' }} --}}
@php
$pchildrens = json_decode($pourOverWillForm['children'], true);
@endphp
@if (is_array($pchildrens))
@foreach ($pchildrens as $pchildren)
- Name: {{ $pchildren['name'] ?? 'Not specified' }}
- Dependent: {{ $pchildren['dependent'] ?? 'Not specified' }}
@endforeach
@else
{{ $pourOverWillForm['children'] ?? 'No' }}
@endif
Gifts
Do you want to leave any specific gifts in your Pour-Over Will?
@php
$gift = json_decode($pourOverWillForm['gift'], true);
@endphp
@if (is_array($gift))
@foreach ($gift as $item)
- Type: {{ $item['type'] ?? 'Not specified' }}
@if(!empty($item['name']))
- Name: {{ $item['name'] ?? 'Not specified' }}
@endif
@if(!empty($item['city']))
- City: {{ $item['city'] ?? 'Not specified' }}
@endif
@if(!empty($item['state']))
- State: {{ $item['state'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_name']))
- Charity Name: {{ $item['charity_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_registration']))
- Charity Registration: {{ $item['charity_registration'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_city']))
- Charity City: {{ $item['charity_city'] ?? 'Not specified' }}
@endif
@if(!empty($item['charity_state']))
- Charity State: {{ $item['charity_state'] ?? 'Not specified' }}
@endif
@if(!empty($item['describe_gift']))
- Describe Gift: {{ $item['describe_gift'] ?? 'Not specified' }}
@endif
@if(!empty($item['alternate_name']))
- Alternate Name: {{ $item['alternate_name'] ?? 'Not specified' }}
@endif
@if(!empty($item['alternate_city']))
- Alternate City: {{ $item['alternate_city'] ?? 'Not specified' }}
@endif
@if(!empty($item['alternate_state']))
- Alternate State: {{ $item['alternate_state'] ?? 'Not specified' }}
@endif
@endforeach
@else
{{ $pourOverWillForm['gift'] ?? 'No' }}
@endif
Trust Details
Trust Name:
{{ $pourOverWillForm['trust_name'] ?? 'Not specified' }}
Signing Date:
{{ $pourOverWillForm['signing_date'] ?? 'Not specified' }}
Who is this Pour-Over Will being created for?
- Name: {{ $pourOverWillForm['full_name'] ?? 'Not specified' }}
- Street Address1: {{ $pourOverWillForm['street_1'] ?? 'Not specified' }}
- Street Address2: {{ $pourOverWillForm['street_2'] ?? 'Not specified' }}
- City: {{ $pourOverWillForm['city'] ?? 'Not specified' }}
- State: {{ $pourOverWillForm['state'] ?? 'Not specified' }}
- Country: {{ $pourOverWillForm['country'] ?? 'Not specified' }}
- ZIP Code: {{ $pourOverWillForm['zip_code'] ?? 'Not specified' }}
Executor
Executors:
@php
$executors = json_decode($pourOverWillForm['executors'], true);
@endphp
@if (is_array($executors))
@foreach ($executors as $executor)
- Name: {{ $executor['name'] ?? 'Not specified' }}
- City: {{ $executor['city'] ?? 'Not specified' }}
- State: {{ $executor['state'] ?? 'Not specified' }}
@endforeach
@else
{{ $pourOverWillForm['executors'] ?? 'Not specified' }}
@endif
Alternate Executors:
@php
$alternateExecutors = json_decode($pourOverWillForm['alternate_executors'], true);
@endphp
@if (is_array($alternateExecutors))
@foreach ($alternateExecutors as $alternateExecutor)
- Name: {{ $alternateExecutor['name'] ?? 'Not specified' }}
- City: {{ $alternateExecutor['city'] ?? 'Not specified' }}
- State: {{ $alternateExecutor['state'] ?? 'Not specified' }}
@endforeach
@else
{{ $pourOverWillForm['alternate_executors'] ?? 'No' }}
@endif
Final Details
Additional Details:
{{ $pourOverWillForm['additional_details'] ?? 'Not specified' }}
Signing Details:
@php
$signingDetails = json_decode($pourOverWillForm['signing_details'], true);
@endphp
@if(isset($signingDetails['type']) && $signingDetails['type'] == "Specific Date")
{{-- Displays details for Specific Date type --}}
- Type: {{ $signingDetails['type'] ?? 'Not specified' }}
- Date: {{ $signingDetails['specific_date'] ?? 'Not specified' }}
- City: {{ $signingDetails['unsure_city'] ?? 'Not specified' }}
@else
{{-- Displays details for other types --}}
- Type: {{ $signingDetails['type'] ?? 'Not specified' }}
- Unsure City: {{ $signingDetails['unsure_city'] ?? 'Not specified' }}
@endif
Created At:
{{ isset($pourOverWillForm['created_at']) ? date('m/d/Y h:i A', strtotime($pourOverWillForm['created_at'])) : 'Not specified' }} (EST)
Updated At:
{{ isset($pourOverWillForm['updated_at']) ? date('m/d/Y h:i A', strtotime($pourOverWillForm['updated_at'])) : 'Not specified' }} (EST)