Google reCAPTCHA
@lang('app.enable_disable_captcha_during_registration')
@if (! (config('captcha.secret') && config('captcha.sitekey')))
@lang('app.to_utilize_recaptcha_please_get')
@lang('app.site_key')
and
@lang('app.secret_key')
@lang('app.from')
@lang('app.recaptcha_website'),
@lang('app.and_update_your')
RECAPTCHA_SITEKEY
@lang('app.and')
RECAPTCHA_SECRETKEY
@lang('app.environment_variables_inside')
.env
@lang('app.file').
@else
@if (settings('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