<div <?php echo e($attributes->class($groupClass())); ?>>
    <?php echo $__env->make('partials.form-group-label', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>

    <div class="<?php echo \Illuminate\Support\Arr::toCssClasses([
        'form-group__content',
        'form-group__content--inline' => $inline,
    ]) ?>"
    >
        <?php echo e($slot); ?>


        <?php if($hasErrorsAndShow($name)): ?>
            <?php if (isset($component)) { $__componentOriginalb3da9c948d817528d1112cad668dde03959d340e = $component; } ?>
<?php $component = $__env->getContainer()->make(App\View\Components\Form\Error::class, ['name' => $name,'inputId' => $inputId] + (isset($attributes) ? (array) $attributes->getIterator() : [])); ?>
<?php $component->withName('form.error'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $constructor = (new ReflectionClass(App\View\Components\Form\Error::class))->getConstructor()): ?>
<?php $attributes = $attributes->except(collect($constructor->getParameters())->map->getName()->all()); ?>
<?php endif; ?>
<?php $component->withAttributes([]); ?>
<?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__componentOriginalb3da9c948d817528d1112cad668dde03959d340e)): ?>
<?php $component = $__componentOriginalb3da9c948d817528d1112cad668dde03959d340e; ?>
<?php unset($__componentOriginalb3da9c948d817528d1112cad668dde03959d340e); ?>
<?php endif; ?>
        <?php endif; ?>

        <?php if($inline && $hint): ?>
            <span class="text-sm mt-1 text-slate-500 hidden sm:block"
                  <?php if($inputId): ?> id="<?php echo e($inputId); ?>-hint-inline" <?php endif; ?>
            >
                <?php echo e($hint); ?>

            </span>
        <?php endif; ?>

        <?php if($helpText): ?>
            <p class="form-text" id="<?php echo e($inputId); ?>-description"><?php echo e($helpText); ?></p>
        <?php endif; ?>
    </div>
</div>
<?php /**PATH /var/www/html/beta/elv3/resources/views/components/form/group.blade.php ENDPATH**/ ?>