@extends('backend.master') @section('title') {{ @$title }} @endsection @section('content')
{{ Auth::user()->name }}

{{ _trans('common.robert_downey') }}

{{ _trans('common.ui_ux_designer') }}

@include('bilnetpropertyownerform::preview_steps.profile_menu')

{{ _trans('Deponent Details') }}

{{ _trans('common.Name') }}

{{ @$data['deponent_name'] ?? 'N/A' }}

{{ _trans('common.Digital Address') }}

{{ @$data['deponent_digital_address'] ?? 'N/A' }}

{{ _trans('common.ID Number') }}

{{ @$data['deponent_id_number'] ?? 'N/A' }}

{{ _trans('common.Phone') }}

{{ @$data['deponent_phone'] ?? 'N/A' }}

{{ _trans('common.Email') }}

{{ @$data['deponent_email'] ?? 'N/A' }}

{{ _trans('common.Living') }}

{{ @$data['deponent_living'] ?? 'N/A' }}

{{ _trans('common.Digital Signature') }}

{{ @$data['deponent_digital_signature'] ?? 'N/A' }}

{{ _trans('common.Indenture Details') }}

{{ _trans('common.Indenture Files') }}

@if (!empty($data['indenture_files']) && is_array($data['indenture_files'])) @foreach ($data['indenture_files'] as $file) @if (in_array(pathinfo($file, PATHINFO_EXTENSION), ['jpg', 'jpeg', 'png', 'gif']))
Indenture File
@else {{ _trans('common.Download Indenture File') }} @endif @endforeach @else

{{ _trans('common.No Indenture Files Available') }}

@endif

{{ _trans('common.Term') }}

{{ @$data['term'] ?? 'N/A' }}

{{ _trans('common.Start Period') }}

{{ @$data['start_period'] ?? 'N/A' }}

{{ _trans('common.End Period') }}

{{ @$data['end_period'] ?? 'N/A' }}

{{ _trans('common.Agreement Files') }}

@if (!empty($data['agreement_files']) && is_array($data['agreement_files'])) @foreach ($data['agreement_files'] as $file) @if (in_array(pathinfo($file, PATHINFO_EXTENSION), ['jpg', 'jpeg', 'png', 'gif']))
Agreement File
@else {{ _trans('common.Download Agreement File') }} @endif @endforeach @else

{{ _trans('common.No Agreement Files Available') }}

@endif

{{ _trans('common.Agreement Text') }}

{{ @$data['agreement_text'] ?? 'N/A' }}

{{ _trans("common.Solicitor's Personal Details") }}

{{ _trans('common.Name') }}

{{ @$data['solicitor_name'] ?? 'N/A' }}

{{ _trans('common.Digital Address') }}

{{ @$data['solicitor_digital_address'] ?? 'N/A' }}

{{ _trans('common.ID Number') }}

{{ @$data['solicitor_id_number'] ?? 'N/A' }}

{{ _trans('common.Phone') }}

{{ @$data['solicior_phone'] ?? 'N/A' }}

{{ _trans('common.Email') }}

{{ @$data['solicior_email'] ?? 'N/A' }}

{{ _trans('common.Digital Signature') }}

{{ @$data['solicitor_digital_signature'] ?? 'N/A' }}

@endsection