PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
kris
/
laravel-form-builder
/
src
/
views
<?php if ($showLabel && $showField): ?> <?php if ($options['wrapper'] !== false): ?> <div <?= $options['wrapperAttrs'] ?> > <?php endif; ?> <?php endif; ?> <?php if ($showLabel && $options['label'] !== false && $options['label_show']): ?> <?= Form::customLabel($name, $options['label'], $options['label_attr']) ?> <?php endif; ?> <?php if ($showField): ?> <?php foreach ((array)$options['children'] as $child): ?> <?php if( ! in_array( $child->getRealName(), (array)$options['exclude']) ) { ?> <?= $child->render() ?> <?php } ?> <?php endforeach; ?> <?php include helpBlockPath(); ?> <?php endif; ?> <?php include errorBlockPath(); ?> <?php if ($showLabel && $showField): ?> <?php if ($options['wrapper'] !== false): ?> </div> <?php endif; ?> <?php endif; ?>
[-] collection.php
[edit]
[-] child_form.php
[edit]
[-] static.php
[edit]
[+]
..
[-] button.php
[edit]
[-] errors.php
[edit]
[-] checkbox.php
[edit]
[-] select.php
[edit]
[-] help_block.php
[edit]
[-] repeated.php
[edit]
[-] buttongroup.php
[edit]
[-] textarea.php
[edit]
[-] choice.php
[edit]
[-] radio.php
[edit]
[-] form.php
[edit]
[-] text.php
[edit]