Form Grid inside Page
Hey I'm new into Filament,
I try to create a custom user Page whit multiple forms but I'm not able to add Grid inside getFormSchema? Any Tips to fix my problem?
6 Replies
Can you share the code? Grids work fine with formSchema
I'm not able to add Grid inside getFormSchemaWhy? What's the issue?
protected function getFormSchema(): array
{
return [
Forms\Components\TextInput::make('current_password')->required()->password(),
Forms\Components\TextInput::make('new_password')->required()->password(),
Forms\Components\TextInput::make('new_password_confirm')->required()->password(),
];
}
This is the getFormSchema inside die Filament Page
That's fine, where is the grid?
Was my mistake, I thougth I need to add the grid arround the input schema, but makes no sense! Thank you guys for the fast reply π