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.
26 lines
933 B
26 lines
933 B
<?php if ($showLabel && $showField): ?>
|
|
<?php if ($options['wrapper'] !== false): ?>
|
|
<div <?= $options['wrapperAttrs'] ?> >
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
|
<?= config("laravel-form-builder.inline") && !isset($options["pure"]) ? '<div class="controls col-sm-10">' : "" ?>
|
|
<?php if ($showField): ?>
|
|
<?= Form::radio($name, $options['value'], $options['checked'], $options['attr']) ?>
|
|
|
|
<?php if ($showLabel && $options['label'] !== false && $options['label_show']): ?>
|
|
<?= Form::customLabel($name, $options['label'], $options['label_attr']) ?>
|
|
<?php endif; ?>
|
|
|
|
<?php include 'help_block.php' ?>
|
|
<?php endif; ?>
|
|
<?= config("laravel-form-builder.inline") && !isset($options["pure"]) ? '</div>' : "" ?>
|
|
|
|
<?php include 'errors.php' ?>
|
|
|
|
<?php if ($showLabel && $showField): ?>
|
|
<?php if ($options['wrapper'] !== false): ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|