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

👤 My Profile

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

{{ $user->email }}

{{ ucfirst($user->role->name ?? 'user') }}
{{-- Profile Content --}}
{{-- DETAILS TAB --}}
👁️ Profile Overview
Name: {{ $user->name }}
Email: {{ $user->email }}
Phone: {{ $user->no_telp }}
{{-- EDIT PROFILE TAB --}}
✏️ Update Profile
@csrf @method('PATCH')
{{-- CHANGE PASSWORD TAB --}}
🔒 Change Password
@csrf @method('PATCH')
@endsection