How to sort field in form #15107
Unanswered
aqilmujahidiin
asked this question in
Help
Replies: 1 comment
-
use use Filament\Forms\Components\Split;
use Filament\Forms\Components\Group;
Split::make([
Group::make([
TextInput::make('field1'),
TextInput::make('field2'),
TextInput::make('field3'),
]),
Group::make([
TextInput::make('field4'),
TextInput::make('field5'),
]),
Group::make([
TextInput::make('field6'),
TextInput::make('field7'),
TextInput::make('field8'),
]),
]), |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Form builder
Package Version
v3.2
How can we help you?
I've done this trick, using grid and fieldset, but it's not satisfactory, I don't want to use sections or fieldsets, just form a schema but the fields are sequential as in the picture, is this possible? if yes, how? thanks
Beta Was this translation helpful? Give feedback.
All reactions