{{-- * @category : "Pour Over Will" Form's Step-Preview Page * @author : Gurupriya Solanki * @updated date :30 May 2024 * @company : Birbals Inc * @description : This is a preview page for "Pour Over Will" form's Steps Where User can see their all filled step's forms data and can pay to receive Attorney And Document. If payment has been successfully done then Admin will upload this document by Admin panel for particular user to send email with attachment. * Client end send the edit request if their intial payment has done and now they want to update their details then have to click on edit button from preview page then request will send to Admin. After approval by Admin client will receive an email and fron dashboard they will "Edit" Button Client has to click on that button to start update process. After update their data they have to pay as well to submit their updated details. * Data is coming from - app\Http\Controllers\Forms\PourOverWillController.php And calling function name is "createSteppreview" * Send Updated Will Document on Vtiger CRM and update path in last payment record in payments table For Free Edit ---}} @extends('layouts.frontend') @section('title', '| Pour-Over Will Form') @section('content') @include('frontend.forms.Pour-Over-Will.stepIndicator') {{-- start --}}
{{-- step 1 --}}
Pour-Over Will Form
@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)
{{-- Payment modal --}} @include('frontend.modals.commanPaymentModal') {{-- Payment modal:Ends --}} {{-- Showing Message when click on Edit Button in Modal: Starts here--}} @include('frontend.modals.editRequestOptionPopup') {{-- Showing Message when click on Edit Button in Modal: Ends here--}} {{-- Showing Disclaimer when click on Edit Submit Button in Modal: Starts here--}} @include('frontend.modals.editSubmitDisclaimerPopup') {{-- ShowingDisclaimer Message when click on Edit Submit Button in Modal: Ends here--}} @endsection @section('page-js') @if($pourOverWillForm->edit_request_data) {{-- /* * Author: Vidhi Shah * Updated date: 26th Mar 2024 * Description: Add edit option for paid forms */ --}} @else {{-- /* * Author: Gurupriya Solanki * Company: Birbals Inc. * Created date: 18 April 2024 * Description: This Modal Pop is showing when Client is click on Edit button to show Disclaimer. Then after confirm Edit request will send to Admin and sending email as well. If Request is already sent then this modal will not show */ --}} @endif @endsection