?
<div class="form-group">
<!--[if BLOCK]><![endif]--><?php if($currentCaptchaType === 'image'): ?>
<div class="d-flex align-items-center mb-2 captcha">
<img src="<?php echo e($captchaImage); ?>" alt="captcha" class="captcha-img">
<button type="button" class="btn btn-sm btn-link ms-2" wire:click="toggleCaptchaType">
Refresh <i class="bi bi-arrow-clockwise"></i>
</button>
</div>
<input wire:model.live="captcha" type="text" placeholder="Enter characters from image" class="form-control" name="captcha" required>
<?php else: ?>
<div class="d-flex align-items-center mb-2">
<span class="captcha-question h5 me-2"><?php echo e($mathCaptcha); ?> = ?</span>
<button type="button" class="btn btn-sm btn-link ms-2" wire:click="toggleCaptchaType">
Refresh <i class="bi bi-arrow-clockwise"></i>
</button>
</div>
<input wire:model.live="captcha" type="text" placeholder="Enter the result" class="form-control" name="captcha" required>
<?php endif; ?> <!--[if ENDBLOCK]><![endif]-->
</div><?php /**PATH /home/sanghavirealty/public_html/resources/views/livewire/captcha-component.blade.php ENDPATH**/ ?>