How do I make a select box be on the same line as label in form?
Right now I have:
But I want the select box be on the same row as the label:
How to do that?
9 Replies
I have tried
->inline(true)
but it's not working.This needs to be it
Checkbox::make('is_admin')->inline()
I am getting Method Filament\Forms\Components\Select::inline does not exist.
I need to use Select, or is there a way to "fake" checkbox options to look like a select box?
Do you need a select or a checkbox what do you want?
select
Sorry, misread the question.
What you want is not possible.
ok, thanks anyway.
@Wirkhof you can hide the label and use https://filamentphp.com/docs/3.x/forms/fields/select#adding-affix-text-aside-the-field if you really want to
Interesting solution. Will try. Thank you.