@extends('layouts.app') @section('title', 'My Profile') @section('content') {{-- carbon --}} @use('Carbon\Carbon')
Profile

{{ $user->name }}

{{ ucfirst($user->user_type ?? 'Admin') }}

Edit Profile
Informasi Profil
Informasi lengkap tentang profil Anda.
Nama Lengkap {{ $user->name }}
Email {{ $user->email }}
No Handphone {{ $user->phone ?? '-' }}
Jenis Kelamin {{ $user->gender ?? '-' }}
Tanggal Bergabung {{ Carbon::parse($user->created_at)->format('d M Y') }}
@endsection