-1

I have a contact form in my laravel website. I added an invisble recaptcha. This is my code :

<div class="contact-form-ftr">
     <form method="post" action="{{ route('contact.store') }}" id="form" data-toggle="validator">
          <div class="form-group pmd-textfield pmd-textfield-floating-label col-lg-6 col-md-6 col-sm-6 col-xs-12 no-padding contact-padding">
                   <label class="control-label">
                          Nom
                   </label>
                   <input type="text" name="name" class="form-control" required>
          </div>
          <div class="form-group pmd-textfield pmd-textfield-floating-label col-lg-6 col-md-6 col-sm-6 col-xs-12">
                   <label class="control-label">
                          Email
                   </label>
                   <input type="email" name="email" class="form-control" required>
           </div>
                           
           <div class="g-recaptcha" data-sitekey="_____"  data-size="invisible"></div>
                   <div class="send text-right" {{-- style="margin-top: 200px" --}}>
                          <button type="submit" class="red-btn-send"><i class="fa fa-envelope"></i> Envoyer </button >
                   </div>
      </form>
</div>

I cannot submit the form once all the inputs are filled .

Youssef Boudaya
  • 887
  • 2
  • 17
  • 29

1 Answers1

0

Register new captcha select Invisible reCAPTCHA badge option(Invisible reCAPTCHA badge option available in reCAPTCHA v2).

enter image description here

jeel sureja
  • 21
  • 2
  • 7