@extends('layouts.app') @section('content')
{{-- NOTIFIKASI AUTO-HIDE --}} @if(session('success'))
{{ session('success') }}
@endif {{-- HEADER PROFIL --}}
@if($user->profile->foto_profil ?? false) @else
{{ $initials }}
@endif

{{ $user->name }}

{{ $user->email }}

{{ ucfirst($user->role) }}
{{-- INFO CARDS --}}

{{ $user->profile->phone_number ?? 'Belum diatur' }}

{{ $user->profile->address ?? 'Belum diatur' }}

{{ $user->created_at->translatedFormat('d F Y') }}

{{-- BUTTON GROUP --}}
Edit Profil
{{-- LOGOUT --}}
@csrf
{{-- Auto-hide Toast --}} @endsection