<?= $form->field($model, 'status')->radioList([
'0' => 'Физическое лицо',
'1' => 'Юридическое лицо',
],[
'item' => function($index, $label, $name, $checked, $value) {
$return = '<div class="radio"><label>';
$return .= '<input type="radio" name="' . $name . '" value="' . $value . '" id="status-'.$index.'">';
$return .= ucwords($label);
$return .= '</label></div>';
return $return;
}
]); ?>