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.

24 lines
896 B

<?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; ?>
<?= config("laravel-form-builder.inline") && !isset($options["pure"]) ? '<div class="controls col-sm-10">' : "" ?>
<?php if ($showField): ?>
<<?= $options['tag'] ?> <?= $options['elemAttrs'] ?>><?= e($options['value']) ?></<?= $options['tag'] ?>>
<?php include 'help_block.php' ?>
<?php endif; ?>
<?= config("laravel-form-builder.inline") && !isset($options["pure"]) ? '</div>' : "" ?>
<?php if ($showLabel && $showField): ?>
<?php if ($options['wrapper'] !== false): ?>
</div>
<?php endif; ?>
<?php endif; ?>