Inline Radio Buttons with the form label on a separate line
I have the following code
How do I make the label
How do I make the label
Claim Type to be in its own line?
Claim Type Radio::make('claim_type')
->label('Claim Type')
->inlineLabel(false)
->options([
'damage' => 'Damage',
'lost' => 'Lost',
'stolen' => 'Stolen',
])->inline()->columns(1),