You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
363 B

<?php if ($showStart): ?>
<?= Form::open($formOptions) ?>
<?php endif; ?>
<?php if ($showFields): ?>
<?php foreach ($fields as $field): ?>
<?php if( ! in_array($field->getName(), $exclude) ) { ?>
<?= $field->render() ?>
<?php } ?>
<?php endforeach; ?>
<?php endif; ?>
<?php if ($showEnd): ?>
<?= Form::close() ?>
<?php endif; ?>