@extends('layouts.app')
@section('title', 'Profil & Ubah Password')
@section('breadcrumb')
@endsection
@section('content')
Profil & Pengaturan Akun
{{-- Session Messages --}}
@if (session('success'))
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
{{-- TAB NAVIGATION --}}
-
-
{{-- TAB: INFO PROFIL --}}
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
{{ auth()->user()->name }}
{{ auth()->user()->email }}
{{ ucfirst(str_replace('_', ' ', auth()->user()->role->value)) }}
{{-- TAB: UBAH PASSWORD --}}
@endsection