© 2026 Hedgehog Software, LLC
Twitter
GitHub
Discord
System
Light
Dark
More
Communities
Docs
About
Terms
Privacy
Search
Star
Feedback
Setup for Free
Custom filament page route for change password - Filament
F
Filament
•
3y ago
•
7 replies
neverender24
Custom filament page route for change password
I created a custom filament page using this
https://filamentphp.com/docs/2.x/admin/resources/custom-pages
And added to appserviceprovider boot
. I call the Resource URL with the following
. I also added the page in the resource getPages
(
)
.
use Filament
\Facades
\Filament
;
use Filament
\Navigation
\UserMenuItem
;
F
i
l
a
m
e
n
t
:
:serving
(function
(
)
{
F
i
l
a
m
e
n
t
:
:registerUserMenuItems
(
[
U
s
e
r
M
e
n
u
I
t
e
m
:
:make
(
)
-
>label
(
'Change Password
'
)
-
>url
(
U
s
e
r
R
e
s
o
u
r
c
e
:
:getUrl
(
'changePassword
'
)
)
-
>icon
(
'heroicon
-s
-cog
'
)
,
]
)
;
}
)
;
I get error
Route
[filament
.resources
.users
.changePassword
] not defined
.
How do I register the route
?
Filament
Custom pages - Resources - Admin Panel - Filament
The elegant TALL stack admin panel for Laravel artisans
.
Solution
Okay I finally got it
, it is because I cache the URL
, after I clear cache it works
.
Jump to solution
Filament
Join
A powerful open-source UI framework for Laravel • Build and ship apps & admin panels fast with Livewire
20,181
Members
View on Discord
Resources
ModelContextProtocol
ModelContextProtocol
MCP Server
Was this page helpful?
Yes
No
Similar Threads
Similar Threads
Issue With Custom Filament Page Route
F
Filament / ❓┊help
5mo ago
Custom page route
F
Filament / ❓┊help
2y ago
Route not found for Filament Resource Page
F
Filament / ❓┊help
11mo ago
Route to custom page
F
Filament / ❓┊help
3y ago