lyne007/auth-recaptcha is a Laravel package for add google recaptcha for laravel-admin..
It currently has 1 GitHub stars and 6 downloads on Packagist (latest version v1.0).
Install it with composer require lyne007/auth-recaptcha.
Discover more Laravel packages by lyne007
or browse all Laravel packages to compare alternatives.
Last updated
Add Google reCAPTCHA(no perception) for laravel-admin

composer require lyne007/auth-recaptcha
config/admin.php file, add configurations'extensions' => [
'auth-recaptcha' => [
// set to false if you want to disable this extension
'enable' => true,
// set to false if you want to disable icon
'iconDisplay' => true,
// reCAPTCHA:v3 keys
'siteKey' => 'your google reCAPTCHA site key',
'secretKey' => 'your google reCAPTCHA secret key',
]
],
Register and get reCAPTCHA keys; https://www.google.com/recaptcha
config/admin.php file, add configurations'excepts' => [
'auth/login',
'auth/logout',
// add
'auth/api/recaptcha'
],
Open your login page in your browser
Licensed under MIT License