@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('Inhabitant Details') }}

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

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

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

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

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

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

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

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

{{ _trans('common.Passport Size Photo') }}

@if ($data['passport_size_photo'])
Passport Photo
@else N/A @endif

{{ _trans('common.Inhabitant Nationality') }}

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

{{ _trans('common.Inhabitant TN') }}

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

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

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

{{ _trans('common.Inhabitant ID Type') }}

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

@if (@$data['inhabitant_card_photo'] !== null)

{{ _trans('common.Inhabitant Card Photo') }}

ID Card Photo
@endif

{{ _trans('common.Inhabitant Relationship') }}

{{ @$data['inhabitant_relationship'] == 'other' ? @$data['inhabitant_relationship_other'] : @$data['inhabitant_relationship'] }}

{{ _trans('common.Proof of Relationship') }}

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

@if ($data['proof_of_relationship'] == 'Birth Certificate')

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

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

{{ _trans('common.Father Alive') }}

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

@if (@$data['is_inhabitant_father_alive'] == 'yes')

{{ _trans("common.Father's Phone") }}

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

{{ _trans("common.Father's Occupation") }}

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

@endif

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

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

{{ _trans('common.Mother Alive') }}

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

@if (@$data['is_inhabitant_mother_alive'] == 'yes')

{{ _trans("common.Mother's Phone") }}

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

{{ _trans("common.Mother's Occupation") }}

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

@endif @if (@$data['is_inhabitant_father_alive'] == 'no' && @$data['is_inhabitant_mother_alive'] == 'no')

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

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

{{ _trans("common.Guardian's Phone") }}

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

{{ _trans("common.Guardian's Occupation") }}

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

@endif @endif @if (@$data['inhabitantType'] === 'Company')

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

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

@endif

{{ _trans('common.Other Relationship Proof') }}

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

@if (@$data['add_proof_relationbship'] !== null)

{{ _trans('common.Add Proof of Relationship') }}

Proof of Relationship
@endif

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

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

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

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

{{ _trans('common.Reason for Accommodation') }}

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

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

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

{{ _trans('common.Accommodation Start Date') }}

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

{{ _trans('common.Accommodation End Date') }}

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

{{ _trans('common.Inhabitant Sex') }}

{{ @$data['inhabitant_sex'] }}

@endsection