coinwind/storage/framework/views/3f847b9cac30ff553f0ca6a578e...

34 lines
1.1 KiB
PHP

<div class="<?php echo e($viewClass['form-group']); ?> <?php echo !$errors->has($errorKey) ? '' : 'has-error'; ?>">
<label for="<?php echo e($id); ?>" class="<?php echo e($viewClass['label']); ?> control-label"><?php echo e($label); ?></label>
<div class="<?php echo e($viewClass['field']); ?>">
<?php echo $__env->make('admin::form.error', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<div class="input-group">
<?php if($prepend): ?>
<span class="input-group-addon"><?php echo $prepend; ?></span>
<?php endif; ?>
<input <?php echo $attributes; ?> />
<?php if($append): ?>
<span class="input-group-addon clearfix"><?php echo $append; ?></span>
<?php endif; ?>
<?php if(isset($btn)): ?>
<span class="input-group-btn">
<?php echo $btn; ?>
</span>
<?php endif; ?>
</div>
<?php echo $__env->make('admin::form.help-block', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
</div>
</div>