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


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);
    }

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?
Was this page helpful?