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
I get this error after submitting the form
I get this error after submitting the form

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