@extends('admin.layouts.app') @section('content')
{{-- ================= PROFILE CARD ================= --}} {{-- ================= INFO CARDS ================= --}}
{{-- PERSONAL INFORMATION --}}

Personal Information

First Name
{{ $result->first_name ?? '-' }}
Last Name
{{ $result->last_name ?? '-' }}
Gender
{{ $result->gender ?? '-' }}
Date Of Birth
{{ $result->date_of_birth ?? '-' }}
Phone
{{ $result->phone ?? '-' }}
Email
{{ $result->email ?? '-' }}
City
{{ $result->city ?? '-' }}
Marital Status
{{ $result->marital_status ?? '-' }}
Zip Code
{{ $result->zip_code ?? '-' }}
Address
{{ $result->address ?? '-' }}
{{-- HEALTH INFORMATION --}}

Health Information

Blood Group
{{ $result->blood_group ?? '-' }}
Allergies
{{ $result->allergies ?? '-' }}
Aadhaar Number
{{ $result->aadhaar_number ?? '-' }}
Insurance Provider
{{ $result->insurance_provider ?? '-' }}
Insurance Number
{{ $result->insurance_number ?? '-' }}
Occupation
{{ $result->occupation ?? '-' }}
@endsection