@extends('layouts.app') @section('title', 'Profile') @section('content')

Profile

Update your account information and password.

Profile Information

Update your account's profile information and email address.

@csrf @method('PUT')
@error('name')

{{ $message }}

@enderror
@error('email')

{{ $message }}

@enderror

Update Password

Ensure your account is using a long, random password to stay secure.

@csrf @method('PUT')
@error('current_password')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror

Account Information

Your account details managed by the administrator.

Role
{{ $user->role }}
Status
@if($user->is_active) Active @else Inactive @endif
Member Since
{{ $user->created_at->format('M d, Y') }}
@endsection