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

My Profile

@if(session('success')) @endif @if(session('error')) @endif @if($errors->any()) @endif
{{ strtoupper(substr(Auth::user()->name, 0, 2)) }}

{{ Auth::user()->name }}

{{ Auth::user()->email }}

{{ ucfirst(str_replace('_', ' ', Auth::user()->role)) }}
{{ Auth::user()->created_at->diffInDays(now()) }}
Days Active
{{ Auth::user()->email_verified_at ? 'Verified' : 'Pending' }}
Email Status
{{ Auth::user()->id }}
User ID
Account Information
User ID: {{ Auth::user()->id }}
Role: {{ ucfirst(Auth::user()->role) }}
Member Since: {{ Auth::user()->created_at->format('M d, Y') }}
Last Updated: {{ Auth::user()->updated_at->format('M d, Y') }}
Email Verified: @if(Auth::user()->email_verified_at) Yes @else No @endif
Quick Actions
Profile Information Change Password @if(Auth::user()->hasPermission('users.view')) Manage Users @endif
Personal Information
@csrf @method('PATCH')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
Contact administrator to change role
Account Statistics

{{ Auth::user()->created_at->diffInDays(now()) }}

Days Active

{{ Auth::user()->email_verified_at ? 'Yes' : 'No' }}

Email Verified

{{ Auth::user()->id }}

User ID

{{ ucfirst(Auth::user()->role) }}

Role
Security Settings
Change Password
@csrf @method('PATCH')
@error('current_password')
{{ $message }}
@enderror
Must be at least 8 characters long @error('password')
{{ $message }}
@enderror
Security Information
Security Tips: Use a strong password with a mix of letters, numbers, and symbols. Never share your password with anyone.
@endsection