© 2026 Hedgehog Software, LLC
Twitter
GitHub
Discord
System
Light
Dark
More
Communities
Docs
About
Terms
Privacy
Search
Star
Feedback
Setup for Free
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 admin panels & apps fast with Livewire
20,307
Members
View on Discord
Resources
ModelContextProtocol
ModelContextProtocol
MCP Server
Was this page helpful?
Yes
No
Similar Threads
Recent Announcements
Similar Threads
Issue With Custom Filament Page Route
F
Filament / ❓┊help
4mo ago
Custom page route
F
Filament / ❓┊help
2y ago
Route not found for Filament Resource Page
F
Filament / ❓┊help
10mo ago
Route to custom page
F
Filament / ❓┊help
3y ago