@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