@extends('layouts.dashboard.superadminapp') @section('title', 'My Profile') @section('styles') @endsection @section('content')

UEPL | My Profile

day, 00 month 0000
@if(session('success')) @endif @if(session('error')) @endif
{{ strtoupper(substr($user->name, 0, 1)) }}
{{ $user->name }}
{{ $user->role }}
{{ $user->email }}
Member since {{ $user->created_at->format('M d, Y') }}
@if($user->status == 1 || strtolower($user->status ?? '') == 'active') Active Account @else Inactive Account @endif
Update Profile Information
@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
Account Information
User ID
#{{ str_pad($user->id, 5, '0', STR_PAD_LEFT) }}
Account Type
{{ $user->role }}
Email Verified
@if($user->email_verified_at) Verified on {{ $user->email_verified_at->format('M d, Y') }} @else Not Verified @endif
Account Created
{{ $user->created_at->format('F d, Y \a\t h:i A') }}
Last Updated
{{ $user->updated_at->format('F d, Y \a\t h:i A') }}
Security Tips
Use Strong Passwords

Create passwords with at least 8 characters, including uppercase, lowercase, numbers, and special characters.

Change Password Regularly

Update your password every 90 days to maintain account security.

Keep Credentials Private

Never share your login credentials with anyone, even colleagues.

@endsection @section('scripts') @endsection