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.
I wasnt the name and slug input beside each other in the editAction modal.
use Filament\Forms\Components\Group;
...
->form([
Group::make([
TextInput::make('field1'),
TextInput::make('field2'),
])->columns(2)
])