mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-24 01:32:25 +01:00
9 lines
339 B
PHP
9 lines
339 B
PHP
|
<fieldset class="toggle-group">
|
||
|
<?php foreach ((array) $field->get('options') as $value => $label): ?>
|
||
|
<label>
|
||
|
<input type="radio" name="<?= $field->name() ?>" value="<?= $value ?>"<?php if ($value == $field->value()): ?> checked<?php endif; ?>>
|
||
|
<span><?= $label ?></span>
|
||
|
</label>
|
||
|
<?php endforeach; ?>
|
||
|
</fieldset>
|