@extends('admin.layouts.app') @section('title', 'User Details - ' . $user->name) @section('content')
Detailed user profile and account information.
Registered User
Status
{{ $user->is_active ? 'Active' : 'Inactive' }}Joined
{{ $user->created_at->format('M Y') }}
{{ $user->name }}
{{ $user->email }}
{{ $user->mobile ?? 'Not provided' }}
{{ $user->detail->dob ? \Carbon\Carbon::parse($user->detail->dob)->format('d M, Y') : 'N/A' }}
{{ $user->detail->gender ?? 'N/A' }}
{{ $user->detail->city ? $user->detail->city . ', ' : '' }} {{ $user->detail->state ? $user->detail->state->name . ', ' : '' }} {{ $user->detail->country ? $user->detail->country->name : 'N/A' }}
{{ $user->detail->marital_status ?? 'N/A' }}
{{ $user->detail->occupation ?? 'N/A' }}
{{ $user->detail->spouse_name ?? 'N/A' }}