@extends('layouts.app') @section('title', 'My Profile') @section('page-title', 'My Profile') @section('content') Manage your personal information, account email and password. {{-- ================================================================ --}} {{-- Profile Information --}} {{-- ================================================================ --}}
@csrf @method('PUT')
{{-- Header --}}
{{-- Avatar --}}
{{ strtoupper( substr($user->name ?? 'U', 0, 1) ) }}

Profile Information

Update your personal information and account email address.

{{-- Form --}}
{{-- Name --}}
@error('name')

{{ $message }}

@enderror
{{-- Email --}}
@error('email')

{{ $message }}

@enderror
{{-- Actions --}}
{{-- ================================================================ --}} {{-- Account Information --}} {{-- ================================================================ --}}
{{-- Header --}}

Account Information

Information related to your system account.

{{-- Account ID --}}

Account ID

#{{ $user->id }}

{{-- Account Email --}}

Email

{{ $user->email }}

{{-- Created --}}

Account Created

{{ $user->created_at?->format('d M Y, h:i A') ?? 'N/A' }}

{{-- Last Updated --}}

Last Updated

{{ $user->updated_at?->format('d M Y, h:i A') ?? 'N/A' }}

{{-- ================================================================ --}} {{-- Password --}} {{-- ================================================================ --}}
@csrf @method('PUT')
{{-- Header --}}

Change Password

Use a strong password to keep your account secure.

{{-- Form --}}
{{-- Current Password --}}
@error('current_password')

{{ $message }}

@enderror
{{-- New Password --}}
@error('password')

{{ $message }}

@enderror
{{-- Confirm Password --}}
{{-- Actions --}}
@endsection