Commit f138a6fd authored by Nico Stapelbroek's avatar Nico Stapelbroek

Update readme with Invisible reCAPTCHA

parent 61dd6705
...@@ -84,6 +84,14 @@ With [custom attributes](https://developers.google.com/recaptcha/docs/display#re ...@@ -84,6 +84,14 @@ With [custom attributes](https://developers.google.com/recaptcha/docs/display#re
{!! NoCaptcha::display(['data-theme' => 'dark']) !!} {!! NoCaptcha::display(['data-theme' => 'dark']) !!}
``` ```
Invisible reCAPTCHA using a [submit button](https://developers.google.com/recaptcha/docs/invisible):
```php
{!! NoCaptcha::displaySubmit('my-form-id', 'submit now!', ['data-theme' => 'dark']) !!}
```
Notice that the id of the form is required in this method to let the autogenerated
callback submit the form on a successful captcha verification.
#### Validation #### Validation
Add `'g-recaptcha-response' => 'required|captcha'` to rules array : Add `'g-recaptcha-response' => 'required|captcha'` to rules array :
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment