Form filter in one line

How can we put them in a single line?
->filters([

                Filter::make('filter')
                    ->form([

                        Select::make('account')
                            ->searchable(true)
                            ->options(Account::query()->pluck('name', 'id')->toArray()),

                        DatePicker::make('start_date'),
                        DatePicker::make('end_data'),

                    ])

            ], layout: FiltersLayout::AboveContent)
Screenshot_2023-09-21_152211.png
Was this page helpful?