?
Current File : /home/sanghavirealty/public_html/resourcesazwer/views/livewire/captcha-component.blade.php
<div class="form-group">
    @if ($currentCaptchaType === 'image')
        <div class="d-flex align-items-center mb-2 captcha">
            <img src="{{ $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>
    @else
        <div class="d-flex align-items-center mb-2">
            <span class="captcha-question h5 me-2">{{ $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>
    @endif
</div>