@extends('layouts.minimal') @section('title', 'Profile') @section('breadcrumb')

Profile

@endsection @section('content')
User profile picture

{{ Auth::user()->name }}

{{ Auth::user()->roles[0]->name ?? '-' }}


  • {{ Auth::user()->name ?? '-' }}

  • {{ Auth::user()->username ?? '-' }}

  • {{ Auth::user()->email ?? '-' }}
Demi keamanan akun, aplikasi akan mewajibkan pengguna mengubah password setiap 1 bulan sekali
@csrf @method('PUT')
@error('password_saat_ini') {{ $message }} @enderror
@error('password_baru') {{ $message }} @enderror
@error('password_baru_confirmation') {{ $message }} @enderror
@endsection @section('css') @endsection @section('js') @endsection