@extends('layoutuser.app') @section('content')
{{-- Flash & error messages --}} @if (session('success')) @endif @if ($errors->any()) @endif

👤 My Profile

{{-- Profile Sidebar --}}
{{ $user->name }}

{{ $user->email }}

{{ ucfirst($user->role->name ?? 'user') }}
{{-- Profile Content --}}
{{-- TAB: Details --}}
👁️ Profile Overview

Name: {{ $user->name }}

Email: {{ $user->email }}

Phone: {{ $user->no_telp }}

{{-- TAB: Edit Profile --}}
✏️ Update Profile
@csrf @method('PATCH')
{{-- TAB: Change Password --}}
🔒 Change Password
@csrf @method('PATCH')
{{-- Toggle Password Script --}}
@endsection