FilamentF
Filament5mo ago
o.m

How to allow form submission on CustomPages?

I have this custom page the displays some prefilled values but I also wanted to create a data in this custom page

class CreateGroupSettings extends Page
{
    protected static ?string $navigationIcon = 'heroicon-o-document-text';
    protected static string $view = 'filament.pages.create-group-settings';
    public static bool $shouldRegisterNavigation = false;
    protected static ?string $slug = 'group-settings/create';

    public $sectionId;
    ( some code )

    public function mount(): void
    {
       (some code)
    }
}


I get this error after submitting the form
image.png
Was this page helpful?