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.
23 lines
771 B
23 lines
771 B
<?php if ($options['wrapper'] !== false): ?>
|
|
<div <?= $options['wrapperAttrs'] ?> >
|
|
<?php endif; ?>
|
|
|
|
<?= config("laravel-form-builder.inline") && !isset($options["pure"]) ? '<div class="controls col-sm-10 offset-sm-2">' : "" ?>
|
|
<?php if (!$options['splitted']): ?>
|
|
<div class="text-center btn-group btn-group-<?= $options['size'] ?>">
|
|
<?php endif; ?>
|
|
|
|
<?php foreach ($options['buttons'] as $button): ?>
|
|
<?= Form::button($button['label'], $button['attr']) ?>
|
|
<?php endforeach; ?>
|
|
|
|
<?php if (!$options['splitted']): ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?= config("laravel-form-builder.inline") && !isset($options["pure"]) ? '</div>' : "" ?>
|
|
|
|
|
|
<?php if ($options['wrapper'] !== false): ?>
|
|
</div>
|
|
<?php endif; ?>
|