mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-23 17:24:38 +01:00
18 lines
517 B
PHP
18 lines
517 B
PHP
<fieldset <?= $this->attr([
|
|
'id' => $field->name(),
|
|
'class' => 'toggle-group',
|
|
'disabled' => $field->isDisabled()
|
|
]) ?>>
|
|
<?php foreach ((array) $field->get('options') as $value => $label): ?>
|
|
<label>
|
|
<input <?= $this->attr([
|
|
'type' => 'radio',
|
|
'name' => $field->formName(),
|
|
'value' => $value,
|
|
'checked' => $value == $field->value()
|
|
]) ?>>
|
|
<span><?= $label ?></span>
|
|
</label>
|
|
<?php endforeach; ?>
|
|
</fieldset>
|