@extends('FrontUser.layouts.app') @section('title', 'My Profile') @section('content')
Account Information
User ID: USR-{{ Auth::user()->id }}

Account Type: {{ ucfirst(Auth::user()->role ?? 'user') }}

Member Since: {{ Auth::user()->created_at->format('M d, Y') }}

Last Login: {{ Auth::user()->updated_at->format('M d, Y') }}
Profile Information
Profile details are managed by administrators. You can only update your avatar.
Contact admin to update
Contact admin to update
Contact admin to update
Contact admin to update
Contact admin to update
Managed by admin
Contact admin to update
@if(Auth::user()->license)
License managed by admin
@endif
Change Password
@csrf @method('PUT')
@endsection @section('scripts') @endsection