@extends('client.layouts.dashboard') @section('title', 'My Profile') @section('content')
{{ strtoupper(substr($admin->name, 0, 1)) }}
{{ $admin->name }}

{{ $admin->email }}

{{ ucfirst($admin->role) }}
Organization
{{ $admin->client->name }}
Status
@if($admin->is_active) Active @else Inactive @endif
Joined
{{ $admin->created_at->format('M d, Y') }}
Last Login
{{ $admin->last_login_at ? $admin->last_login_at->diffForHumans() : 'N/A' }}
Update Profile
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
Change Password
@csrf @method('PUT')
@error('current_password')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
Minimum 8 characters
@endsection