πΊπΈUnited States reuven
Add custom class to every radio's elements
Show radio element inline
$radioOptions = [
'red'=>'Red',
'blue'=>'Blue',
'white'=>'White',
'black'=>'Black',
'orange'=>'Orange',
];
$form['custom_radios'] = [
'#type' => 'radios',
// ...
'#options' => $radioOptions,
];
foreach($radioOptions as $key=>$value) {
$form['custom_radios'][$key] = [
'#wrapper_attributes' => [
'class' => [
'form-check-inline',
'custom_class'
],
],
];
}