@extends('layouts.app')
@section('title', 'Account Management')
@section('content')
@php
$mid = trim((string) ($profile->middlename ?? ''));
$fullName = trim($profile->firstname . ' ' . ($mid !== '' ? $mid . ' ' : '') . $profile->surname);
$initials = strtoupper(substr($profile->firstname ?? 'S',0,1) . substr($profile->surname ?? '',0,1));
@endphp
To correct your name, LRN, or other details, please contact the Registrar or your class adviser.
Change Password
Update your login password.
Last login: {{ $account && $account->last_login ? \Carbon\Carbon::parse($account->last_login)->format('M j, Y g:i A') : '—' }}
Keep your password private. If you suspect someone else knows it, change it immediately.