@extends('layout.layout')
@php
$title = 'View/Edit Profile';
$subTitle = 'View/Edit Profile';
// Script diletakkan di @push('scripts') di bawah, jadi variabel $script ini dikosongkan saja
$script = '';
@endphp
@section('content')
{{-- ============================================== --}}
{{-- ===== KOLOM KIRI (INFO PROFIL) ===== --}}
{{-- ============================================== --}}
{{ $user->name }}
{{ $user->email }}
Personal Info
-
Full Name
: {{ $user->name }}
-
Email
: {{ $user->email }}
-
Phone
: {{ $user->profile->phone_number ?? '-' }}
-
Address
: {{ $user->profile->address ?? '-' }}
-
Status
:
{{ ucfirst($user->status) }}
-
Joined Date
: {{ $user->created_at->translatedFormat('d M Y') }}
{{-- ============================================== --}}
{{-- ===== KOLOM KANAN (FORM EDIT) ===== --}}
{{-- ============================================== --}}
{{-- Navigasi Tab --}}
{{-- Konten Tab --}}
@endsection
@push('scripts')
@endpush