Level 70
@kenjivafe You can create an edit controller and view, then use it in customizing the user menu.
Check here: https://filamentphp.com/docs/2.x/admin/navigation#customizing-the-user-menu
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi all, how can I add ->profile() (edit profile) to a filament panel without changing the current authenticated user's name to "Profile"?
return $panel ->default() ->id('app') ->path('app') ->login() ->registration(Register::class) ->userMenuItems([ MenuItem::make() ->label('Admin') ->icon('heroicon-o-cog-6-tooth') ->url('/admin'), ])
Please or to participate in this conversation.