@extends('layouts.dashboard') @section('title', 'Profil Petugas') @section('content')

Pengaturan Profil

{{ $user->nama }}

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

{{ $user->email }}

{{ $user->no_hp }}

Ubah Password Keamanan

Pastikan password baru Anda kuat dan sulit ditebak.

@if(session('success'))
{{ session('success') }}
@endif
@csrf @method('PUT')
@error('current_password')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
@endsection