{{ $pageTitle }}

  • {{ __('Tenant Information') }}
  • {{ __('Home Details') }}
  • {{ __('Documents') }}
@csrf

{{ __('Tenant Information') }}

{{ __('Personal Information') }}


{{--
{!! json_encode($tenant->family_member_detail, JSON_PRETTY_PRINT) !!}
--}}
@if(!empty($tenant->family_member_detail)) @php $familyMembers = json_decode($tenant->family_member_detail, true); @endphp @foreach($familyMembers as $key => $data)
@endforeach @endif

{{ __('Previous Address') }}

{{ __('Permanent Address') }}

@csrf

{{ __('Home Details') }}


Lease Histories
@if($lease_histories == null)

No Lease Record Yet

@else @foreach($lease_histories as $history) @endforeach
Property Unit Lease Start Date Lease Start Date Notes
{{$history->property_name}} {{$history->unit_name}} {{$history->lease_start_date}} {{$history->lease_end_date}} {{$history->notes}}
@endif

{{ $tenant->property_name ?? __('N/A') }}

{{ $tenant->property_address ?? __('N/A') }}

{{ $tenant->unit_name ?? __('N/A') }}
{{ __('Available For Tenant') }}

{{ __('Rent Information') }}

@csrf

{{ __('Personal Documents') }}

@if(isset($tenant->documents) && !empty($tenant->documents))
@foreach ($tenant->documents as $document)
@if ($isImage) image @else File-Image @endif
{{ $document->file_name }}
@endforeach
@endif

{{-- {{ __('Save') }} --}}