@extends('admin.layouts.app') @section('title', 'My Profile') @section('content')

My Profile

Manage your account information and preferences.

{{ substr(auth('admin')->user()->name, 0, 1) }}

{{ $admin->name }}

{{ $admin->email }}

{{ str_replace('_', ' ', $admin->role) }}

Member Since {{ $admin->created_at->format('M d, Y') }}
Last Login @if($admin->last_login_at) {{ $admin->last_login_at->diffForHumans() }} @else Never @endif

Account Information

{{ str_replace('_', ' ', $admin->role) }} @if($admin->role === 'super_admin') Full access to all platform features @else Limited administrative access @endif
@if($admin->is_active) Active @else Inactive @endif

Tip

Contact your super admin to change your email address or account role.

@endsection