@lang('Google reCAPTCHA')
@lang('Enable/Disable Google reCAPTCHA during the registration.') @if (! (config('captcha.secret') && config('captcha.sitekey')))
@lang('To utilize Google reCAPTCHA, please get your') @lang('Site Key') @lang('and') @lang('Secret Key') @lang('from') @lang('reCAPTCHA Website') , @lang('and update your') RECAPTCHA_SITEKEY @lang('and') RECAPTCHA_SECRETKEY @lang('environment variables inside') .env @lang('file').
@else @if (setting('registration.captcha.enabled')) {!! Form::open(['route' => 'settings.registration.captcha.disable', 'id' => 'captcha-settings-form']) !!} {!! Form::close() !!} @else {!! Form::open(['route' => 'settings.registration.captcha.enable', 'id' => 'captcha-settings-form']) !!} {!! Form::close() !!} @endif @endif