This adds a span under the radio button that allows for a description to be added about what the radio button may do.
It is as easy as adding this in public function fields()
RadioButton::make('Administrator type', 'is_super_admin')
->options([
0 => ['Regular administrator'],
1 => ['Super administrator','Super administrators have all administrator permissions and can manage other admins.'],
])
->stack()
This adds a span under the radio button that allows for a description to be added about what the radio button may do.
It is as easy as adding this in
public function fields()