<div class="form-check">
    <!--div class="choice-input flex items-center h-5"-->
        <input <?php echo $attributes->class($type === 'checkbox' ? 'form-check-input' : 'form-check-input')->except('type'); ?>

               <?php if($name): ?> name="<?php echo e($name); ?>" <?php endif; ?>
               <?php if($id): ?> id="<?php echo e($id); ?>" <?php endif; ?>
               type="<?php echo e($type); ?>"
               <?php if($value): ?> value="<?php echo e($value); ?>" <?php endif; ?>
               <?php if($checked && ! $hasBoundModel()): ?> checked <?php endif; ?>
               <?php echo e($extraAttributes); ?>

               <?php echo $ariaDescribedBy(); ?>

               <?php if($hasErrorsAndShow($name)): ?>
                   aria-invalid="true"
               <?php endif; ?>
        />
    <!--/div-->

    <?php if(! $slot->isEmpty() || $label || $description): ?>
        <!--div class=""-->
            <?php if(! $slot->isEmpty() || $label): ?>
                <label for="<?php echo e($id); ?>" class="form-check-label">
                    <?php if($label): ?>
                        <?php echo e($label); ?>

                    <?php else: ?>
                        <?php echo e($slot); ?>

                    <?php endif; ?>
                </label>
            <?php endif; ?>

            <?php if($description): ?>
                <p class="choice-description text-slate-500"><?php echo e($description); ?></p>
            <?php endif; ?>
        <!--/div-->
    <?php endif; ?>
</div>
<?php /**PATH /var/www/html/beta/elv3/resources/views/components/form/checkbox-or-radio.blade.php ENDPATH**/ ?>