© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
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 = UserResource::class;
protected static string $view = 'filament.resources.user-resource.pages.change-password';

protected function getActions(): array
{
return [
Actions\Action::make('save')
]),
];
}

public static function form(Form $form): Form
{
return $form
->schema([
TextInput::make('description')
->maxLength(100)->required(),
TextInput::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?
Screenshot_1.jpg
Filament
Custom pages - Resources - Admin Panel - Filament
The elegant TALL stack admin panel for Laravel artisans.
Custom pages - Resources - Admin Panel - Filament
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

how to create custom page
FilamentFFilament / ❓┊help
3y ago
How to create custom list page?
FilamentFFilament / ❓┊help
3y ago
How to create custom page on view action?
FilamentFFilament / ❓┊help
3y ago
Create custom page error
FilamentFFilament / ❓┊help
13mo ago