@extends('admin.MainComponent') @section('content')

Client Details

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
  • Name: {{ $client->name }}
  • Email: {{ $client->email }}
  • Phone: {{ $client->phone }}
  • Gender: {{ $client->gender ? ucfirst($client->gender) : 'Not specified' }}
  • Status: @if($client->is_active) Active @else Inactive @endif
  • Location: {{ $client->city ?? 'Not specified' }}
  • Registered: {{ $client->created_at->format('Y-m-d') }}
  • @if($client->status_message)
  • Status Message: {{ $client->status_message }}
  • @endif
@if($client->avatar) Client Profile @else
{{ substr($client->name, 0, 1) }}
@endif
@if($client->address)
Address:

{{ $client->address }}

@endif
Actions
@if($client->is_active) @else
@csrf
@endif
@endsection @push('styles') @endpush