From 44cfb1d9b9c5a9716c7196e50c37f97b1c95524e Mon Sep 17 00:00:00 2001 From: isaacclad Date: Fri, 19 Jun 2026 10:48:59 +0000 Subject: [PATCH] Fix profile dropdown 500 by using the correct auth user variable. Topbar defines $u but the menu partial was passed undefined $user. Co-authored-by: Cursor --- resources/views/partials/topbar.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/partials/topbar.blade.php b/resources/views/partials/topbar.blade.php index 89f2767..ed282d6 100644 --- a/resources/views/partials/topbar.blade.php +++ b/resources/views/partials/topbar.blade.php @@ -81,7 +81,7 @@
@include('partials.user-profile-menu', [ - 'items' => \App\Support\UserProfileMenu::items($user), + 'items' => \App\Support\UserProfileMenu::items($u), ])