@extends('layouts.app') @section('title', 'My Profile') @section('breadcrumb', 'My Profile') @section('content')
My Profile
{{ strtoupper(substr($user->name, 0, 2)) }}
{{ $user->name }}
{{ str_replace('_', ' ', $user->role) }} @if($user->school)
{{ $user->school->name }}
@endif
@csrf @method('PUT')
Email cannot be changed. Contact MCSS administrator.

Change Password (leave blank to keep current)
Last login: {{ $user->last_login_at?->format('M d, Y H:i') ?? 'N/A' }} @if($user->last_login_ip) from {{ $user->last_login_ip }} @endif
@endsection