@php $user = Auth::user(); $userType = $user->user_type; // Tentukan layout berdasarkan role if ($userType === 'admin') { $layout = 'layouts.admin'; } elseif ($userType === 'supervisor') { $layout = 'layouts.supervisor'; } elseif ($userType === 'teknisi') { $layout = 'layouts.teknisi'; } else { $layout = 'layouts.main'; } @endphp @extends($layout) @section('title', 'Edit Profile - POLJAM TECH') @section('content') @if (session('status') === 'profile-updated')
Kelola informasi profil dan foto Anda