@extends('layouts.admin') @section('title', 'Pengaturan Profil') @section('page-title', 'Pengaturan Profil') @section('content') @php use Illuminate\Support\Facades\Storage; $profileUser = auth()->user(); $profilePhotoUrl = $profileUser->foto_profil ? Storage::url($profileUser->foto_profil) : null; @endphp
@csrf @method('POST')
@unless($profilePhotoUrl) {{ strtoupper(substr($profileUser->nama ?? 'A', 0, 1)) }} @endunless
{{ $profileUser->nama }}

ADMIN PERPUSTAKAAN



Ubah Password
Isi hanya jika ingin mengubah password
@endsection @push('styles') @endpush