env('RECAPTCHA_ENABLED', false), /* |-------------------------------------------------------------------------- | Features that use reCAPTCHA |-------------------------------------------------------------------------- | | Configure which features should use reCAPTCHA when enabled. | */ 'features' => [ 'registration' => env('RECAPTCHA_ON_REGISTRATION', true), 'login' => env('RECAPTCHA_ON_LOGIN', false), 'contact_form' => env('RECAPTCHA_ON_CONTACT', true), 'password_reset' => env('RECAPTCHA_ON_PASSWORD_RESET', false), ], /* |-------------------------------------------------------------------------- | API Configuration |-------------------------------------------------------------------------- | | reCAPTCHA API configuration settings. | The site_key and secret_key are defined in config/services.php | */ 'version' => env('RECAPTCHA_VERSION', 'v2'), 'size' => env('RECAPTCHA_SIZE', 'normal'), // 'normal', 'compact' 'theme' => env('RECAPTCHA_THEME', 'light'), // 'light', 'dark' ];