File: /home/bdedition/public_html/core/storage/framework/views/1947930eb9545d3cd3bb5471deb4d2ca.php
<?php
$customCaptcha = loadCustomCaptcha();
$googleCaptcha = loadReCaptcha()
?>
<?php if($googleCaptcha): ?>
<div class="mb-3">
<?php echo $googleCaptcha ?>
</div>
<?php endif; ?>
<?php if($customCaptcha): ?>
<div class="form-group">
<div class="mb-2">
<?php echo $customCaptcha ?>
</div>
<label class="form-label"><?php echo app('translator')->get('Captcha'); ?></label>
<input type="text" name="captcha" class="form-control form--control" required>
</div>
<?php endif; ?>
<?php if($googleCaptcha): ?>
<?php $__env->startPush('script'); ?>
<script>
(function($){
"use strict"
$('.verify-gcaptcha').on('submit',function(){
var response = grecaptcha.getResponse();
if (response.length == 0) {
document.getElementById('g-recaptcha-error').innerHTML = '<span class="text--danger"><?php echo app('translator')->get("Captcha field is required."); ?></span>';
return false;
}
return true;
});
window.verifyCaptcha = () => {
document.getElementById('g-recaptcha-error').innerHTML = '';
}
})(jQuery);
</script>
<?php $__env->stopPush(); ?>
<?php endif; ?>
<?php /**PATH /home/bdedition/public_html/core/resources/views/partials/captcha.blade.php ENDPATH**/ ?>