© 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
•
31 replies
neverender24
How to create custom page
I follwed this doc
https://filamentphp.com/docs/2.x/admin/resources/custom-pages
It created a filament custom resource and a view
.
In the custom page I added
class ChangePassword extends Page
{
protected static string
$resource
=
U
s
e
r
R
e
s
o
u
r
c
e
:
:class
;
protected static string
$view
=
'filament
.resources
.user
-resource
.pages
.change
-password
'
;
protected function getActions
(
)
: array
{
return
[
Actions
\
A
c
t
i
o
n
:
:make
(
'save
'
)
]
)
,
]
;
}
public static function form
(Form
$form
)
: Form
{
return
$form
-
>schema
(
[
T
e
x
t
I
n
p
u
t
:
:make
(
'description
'
)
-
>maxLength
(100
)
-
>required
(
)
,
T
e
x
t
I
n
p
u
t
:
:make
(
'denominated
'
)
-
>maxLength
(100
)
]
)
;
}
It just added the action but not the form just like in the image shown
, How can I display the form
?
Filament
Custom pages - Resources - Admin Panel - Filament
The elegant TALL stack admin panel for Laravel artisans
.
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
how to create custom page
F
Filament / ❓┊help
3y ago
How to create custom list page?
F
Filament / ❓┊help
3y ago
How to create custom page on view action?
F
Filament / ❓┊help
3y ago
Create custom page error
F
Filament / ❓┊help
13mo ago