@extends('backend.layouts.app') @section('content')

{{translate('Google reCAPTCHA Setting')}}

@csrf
{{translate("Google reCAPTCHA v3 returns a score ranging from 0.0 to 1.0 that indicates the likelihood a request is made by a human or a bot.")}}
How to Interpret the reCAPTCHA V3 Scores
  • 1. Score: 0.0 - 0.3 : Very likely a bot — Recommended Action: Block the request or require additional verification.
  • 2. Score: 0.3 - 0.5 : Suspicious activity — Recommended Action: Might want to require additional verification.
  • 3. Score: 0.5 - 0.7 : Possibly human — Recommended Action: Could be legitimate traffic.
  • 4. Score: 0.7 - 0.9 : Likely human — Recommended Action: Probably safe to allow.
  • 5. Score: 0.9 - 1.0 : Very likely human — Recommended Action: Definitely safe to allow.
  • 6. If Google reCAPTCHA v3 credentials have not yet been created, please register your site by visiting this link and complete the setup process.
  • Recaptcha Applicable Pages
  • @php $settings = [ 'recaptcha_admin_login' => 'Admin Login', 'recaptcha_customer_login' => 'Customer Login', 'recaptcha_customer_register' => 'Customer Registration', 'recaptcha_customer_mail_verification' => 'Customer Mail Verification', 'recaptcha_seller_login' => 'Seller Login', 'recaptcha_seller_register' => 'Seller Registration', 'recaptcha_seller_mail_verification' => 'Seller Mail Verification', 'recaptcha_forgot_password' => 'Forgot Password', 'recaptcha_delivery_boy_login' => 'Delivery Boy Login', 'recaptcha_contact_form' => 'Contact Us Form', ]; @endphp @foreach($settings as $key => $label)
    @endforeach
@endsection @section('modal') @endsection @section('script') @endsection