File: /var/www/ivs.kaunokolegija.lt/laravel/storage/framework/views/11fab0009ac8b2f2a4ba2b519012e0ad.php
<div class="form-group">
<div class="form-check <?php echo e($errors->has($name) ? 'is-invalid' : ''); ?>">
<input type="hidden" name="<?php echo e($name); ?>" value="0">
<input
class="form-check-input"
type="checkbox"
name="<?php echo e($name); ?>"
id="<?php echo e($name); ?>"
value="1"
<?php echo e(old($name, $value) == 1 ? 'checked' : ''); ?>
<?php echo e($attributes->merge(['class' => $errors->has($name) ? 'is-invalid' : ''])); ?>
>
<?php if($label): ?>
<label class="form-check-label" for="<?php echo e($name); ?>">
<?php echo e($label); ?>
</label>
<?php endif; ?>
</div>
<?php if($errors->has($name)): ?>
<div class="text-danger">
<?php echo e($errors->first($name)); ?>
</div>
<?php endif; ?>
<?php if($helpLabel): ?>
<span class="help-block"><?php echo e($helpLabel); ?></span>
<?php endif; ?>
</div>
<?php /**PATH /var/www/ivs.kaunokolegija.lt/laravel/resources/views/components/form/checkbox.blade.php ENDPATH**/ ?>