php-censor/src/PHPCensor/Form/View/FieldSet.phtml
2018-03-09 13:46:18 +07:00

10 lines
229 B
PHTML

<fieldset class="row <?= $class; ?>">
<?php if ($label): ?>
<legend><?= $label; ?></legend>
<?php endif; ?>
<?php foreach ($children as $field): ?>
<?= $field; ?>
<?php endforeach; ?>
</fieldset>