@extends('layouts.app') @section('title', 'Doctor Details') @section('content')

Doctor Details

@if(session('success'))
{{ session('success') }}
@endif

Personal Information

{{ $doctor->title ?? 'N/A' }}

{{ $doctor->first_name }}

{{ $doctor->last_name }}

{{ $doctor->email }}

{{ $doctor->phone ?? 'N/A' }}

{{ $doctor->country ?? 'N/A' }}

Professional Information

{{ $doctor->practice_number }}

{{ $doctor->specialization ?? 'N/A' }}

{{ $doctor->qualification ?? 'N/A' }}

@if($doctor->is_verified && $doctor->is_active) Active & Verified @elseif($doctor->is_verified && !$doctor->is_active) Verified but Inactive @else Pending Verification @endif
@if($doctor->educational_details)

{{ $doctor->educational_details }}

@endif @if($doctor->verified_at)

{{ $doctor->verified_at->format('F d, Y \a\t g:i A') }}

@endif

Profile Picture

@if($doctor->profile_picture_path)
{{ $doctor->full_name }}
@else

No profile picture

@endif
@if(!$doctor->is_verified)
@csrf
@endif
@csrf
@csrf @method('DELETE')

Uploaded Documents

Letterhead

@if($doctor->letterhead_path)
Letterhead
View Full Size @else

Not uploaded

@endif

Stamp

@if($doctor->stamp_path)
Stamp
View Full Size @else

Not uploaded

@endif

Signature

@if($doctor->signature_path)
Signature
View Full Size @else

Not uploaded

@endif

Profile Picture

@if($doctor->profile_picture_path)
Profile Picture
View Full Size @else

Not uploaded

@endif
@endsection