@extends('layouts.app') @section('title', 'My Profile') @section('page-title', 'My Profile') @section('content')
{{-- Profile Card --}}
{{ $user->name }}
{{ $user->email }}
{{ $user->role_label }}
Member since {{ $user->created_at->format('M Y') }}
Last login {{ $user->last_login_at?->diffForHumans() ?? 'N/A' }}
{{-- Edit Profile --}}
Edit Profile
@csrf @method('PUT')
Contact admin to change email.
Max 2MB. JPG, PNG, GIF accepted.
{{-- Change Password --}}
Change Password
@csrf @method('PUT')
@error('current_password')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@endsection