FilamentF
Filament13mo ago
Ava

editAction -> form -> columns(2)

How can I add two columns to my editActions modal?

I wasnt the name and slug input beside each other in the editAction modal.
Solution
try Group

use Filament\Forms\Components\Group;
...

->form([
    Group::make([
        TextInput::make('field1'),
        TextInput::make('field2'),
    ])->columns(2)
])
Was this page helpful?