Represents a list of radio buttons with a single selection. Documentation:
Widget:
use Yiisoft\Form\Field\RadioList;
echo RadioList::widget()
->items([
'red' => 'Red',
'blue' => 'Blue',
])
->name('RadioListForm[color]')
->label('Select color')
->hint('Color of box.');
Result will be:
<div>
<label>Select color</label>
<div>
<label><input type="radio" name="RadioListForm[color]" value="red"> Red</label>
<label><input type="radio" name="RadioListForm[color]" value="blue"> Blue</label>
</div>
<div>Color of box.</div>
</div>