@php $title = 'Client Profile Details'; $header = 'Client Profile Details'; @endphp @extends('admin.layouts.app') @section('content')
{{ $profile->name }}
{{ $profile->name }}
{{ $profile->profession ?: 'Profession not specified' }} @if($profile->city) · {{ $profile->city }} @endif
{{ $profile->gender ?? 'N/A' }} {{ $profile->age ? $profile->age.' years' : 'Age N/A' }} {{ $profile->marital_status ?? 'Status N/A' }}
Education
{{ $profile->qualification ?? '—' }}
Income
{{ $profile->income ?? '—' }}
Height
{{ $profile->height ?? '—' }}
Basic Information
Full Name
{{ $profile->name }}
First / Last Name
{{ $profile->first_name }} {{ $profile->last_name }}
Gender
{{ $profile->gender ?? '—' }}
Date of Birth
{{ $profile->date_of_birth ? $profile->date_of_birth->format('d M Y') : '—' }}
Marital Status
{{ $profile->marital_status ?? '—' }}
Religion & Background
Religion
{{ $profile->religion ?? '—' }}
Sect
{{ $profile->sect ?? '—' }}
Caste
{{ $profile->caste ?? '—' }}
Ethnicity
{{ $profile->ethnicity ?? '—' }}
Nationality
{{ optional($profile->nationalityCountry)->name ?? '—' }}
Family Background
{{ $profile->family_background ?: 'No additional family background provided.' }}
Residence & Location
Country of Residence
{{ optional($profile->nationalityCountry)->name ?? '—' }}
City
{{ $profile->city ?? '—' }}
Size of House
{{ $profile->house_size ?? '—' }}
Residence Type
{{ $profile->residence_type ?? '—' }}
Home Ownership
{{ $profile->home_ownership ?? '—' }}
Address
{{ $profile->address ?? '—' }}
Education & Employment
Education Level
{{ $profile->qualification ?? '—' }}
Institute
{{ $profile->institute ?? '—' }}
Employment Status
{{ $profile->employment_status ?? '—' }}
Profession
{{ $profile->profession ?? ($profile->nature_of_job ?? '—') }}
Monthly Income
{{ $profile->income ?? '—' }}
Family Details
Father's Occupation
{{ $profile->father_occupation ?? '—' }}
Mother's Occupation
{{ $profile->mother_occupation ?? '—' }}
Total Siblings
{{ $profile->siblings_count ?? '—' }}
Siblings Married
{{ $profile->siblings_married_count ?? '—' }}
Partner Requirements
Age Range
@if($profile->requirement_age_min || $profile->requirement_age_max) {{ $profile->requirement_age_min ?? '—' }} - {{ $profile->requirement_age_max ?? '—' }} @else — @endif
Height
{{ $profile->requirement_height ?? '—' }}
Country
{{ optional($profile->requirementCountry)->name ?? '—' }}
City
{{ $profile->requirement_city ?? '—' }}
Sect
{{ $profile->requirement_sect ?? '—' }}
Marital Status
{{ $profile->requirement_marital_status ?? '—' }}
Additional Notes
{{ $profile->requirement_notes ?: 'No additional notes provided.' }}
@endsection