© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
5 replies
terumi

How to fill form in a custom page?

hello people.
I made a new custom page on a resource with
 php artisan make:filament-page ShowTicket --resource=TicketResource
 php artisan make:filament-page ShowTicket --resource=TicketResource


Now, I want to display a form for the record I hooked up to the page using:
  public function mount(int | string $record): void
    {
        //$this->fillForms();
        $this->record = $this->resolveRecord($record);
    }
  public function mount(int | string $record): void
    {
        //$this->fillForms();
        $this->record = $this->resolveRecord($record);
    }

I made a form and I put it in the blade file.
The form is being displayed but is isn't filled.
I used fill() on the form but still the form is empty.

Anyone knows what's wrong?
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

how to fill form at simple page
FilamentFFilament / ❓┊help
3y ago
Fill custom edit page form with data
FilamentFFilament / ❓┊help
2y ago
How to custom page form
FilamentFFilament / ❓┊help
3y ago
Custom page, custom fill form radio reset after picked
FilamentFFilament / ❓┊help
13mo ago