@if ($recaptchaEnabled)
@if ($recaptchaDriver === 'google')
{{ $errors->first('g-recaptcha-response') }}
@elseif($recaptchaDriver === 'cloudflare')
{{ $errors->first('cf-turnstile-response') }}
@else
@error('captcha')
{{ $message }}
@enderror
@endif
@push('theme::javascript')
@if ($recaptchaDriver === 'google')
@elseif($recaptchaDriver === 'cloudflare')
@endif
@endpush
@endif