Afghanistan Tajik Community
ID: {{ $user->id ?? '---' }} | Registered: {{ $user->created_at ? \Carbon\Carbon::parse($user->created_at)->format('d M Y') : '---' }}

User Profile

Personal Information

Full Name {{ $user->first_name }} {{ $user->last_name }}
Gender {{ ucfirst($user->gender) }}
Date of Birth {{ \Carbon\Carbon::parse($user->date_of_birth)->format('d M Y') }} ({{ \Carbon\Carbon::parse($user->date_of_birth)->age }} years)
Contact Information
Phone: {{ $user->phone_number }}
Email: {{ $user->email }}
Occupation {{ $user->occupation }}
Province {{ $user->province->name ?? 'Not specified' }}
Marital Status {{ ucfirst($user->marital_status) }}

Residential Address

Address {{ $user->address ?? 'Not specified' }}
Location {{ $user->address_suburb ? $user->address_suburb.', ' : '' }} {{ $user->address_city ? $user->address_city : 'Not specified' }}
State/Province {{ $user->address_state ?? 'Not specified' }}
Postal Code {{ $user->address_postal_code ?? 'Not specified' }}
Country {{ $user->address_country ?? 'Not specified' }}
@if($user->marital_status === 'married')

Spouse Information

Full Name {{ $user->spouse_first_name }} {{ $user->spouse_last_name }}
Gender {{ ucfirst($user->spouse_gender) }}
Date of Birth @if($user->spouse_date_of_birth) {{ \Carbon\Carbon::parse($user->spouse_date_of_birth)->format('d M Y') }} ({{ \Carbon\Carbon::parse($user->spouse_date_of_birth)->age }} years) @else Not specified @endif
Occupation {{ $user->spouse_occupation ?? 'Not specified' }}
@endif @if($user->childrenOver18->count() > 0)

Children Over 18 ({{ $user->childrens_over18_no }})

@foreach($user->childrenOver18 as $child) @if($child->details || $child->residential_address) @endif @endforeach
Name Gender Age Contact Status
{{ $child->first_name }} {{ $child->last_name }} {{ ucfirst($child->gender) }} {{ \Carbon\Carbon::parse($child->date_of_birth)->format('d M Y') }} ({{ \Carbon\Carbon::parse($child->date_of_birth)->age }} yrs) @if($child->phone_number)
Phone: {{ $child->phone_number }}
@endif @if($child->email)
Email: {{ $child->email }}
@endif
{{ ucfirst($child->work_study) }}
@if($child->residential_address)
Address: {{ $child->residential_address }}
@endif @if($child->details)
Details: {{ $child->details }}
@endif
@endif @if($user->childrenUnder18->count() > 0)

Children Under 18 ({{ $user->childrens_under18_no }})

@foreach($user->childrenUnder18 as $child) @if($child->details || $child->residential_address) @endif @endforeach
Name Gender Age Contact Education
{{ $child->first_name }} {{ $child->last_name }} {{ ucfirst($child->gender) }} {{ \Carbon\Carbon::parse($child->date_of_birth)->format('d M Y') }} ({{ \Carbon\Carbon::parse($child->date_of_birth)->age }} yrs) @if($child->phone_number)
Phone: {{ $child->phone_number }}
@endif @if($child->email)
Email: {{ $child->email }}
@endif
{{ ucfirst($child->school_college) }}
@if($child->residential_address)
Address: {{ $child->residential_address }}
@endif @if($child->details)
Details: {{ $child->details }}
@endif
@endif

This document is confidential and contains personal information.

Printed on {{ date('d M Y') }} at {{ date('H:i') }}