@extends('admin.layouts.app') @section('title', 'Account Settings') @section('page-title', 'Account Settings') @section('content')

Change Password

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')

Account Information

Name {{ $user->name }}
Email {{ $user->email }}
Phone {{ $user->phone ?? 'Not set' }}
Role {{ $user->roles->first()?->name ?? 'User' }}
Member Since {{ $user->created_at->format('M d, Y') }}
@endsection