@extends('admin.master') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@foreach($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@csrf @method('PUT')

Fraud Guard

Configure fraud detection rules and blacklists

Fraud Guard - Quantity Limit

Limit the maximum quantity per product that users can add to their cart. This helps prevent fraudulent bulk orders.

Old Users
Apply quantity limit to users who have previous orders
New Users
Apply quantity limit to users who don't have any previous orders
Maximum Quantity Per Product
Maximum quantity of any single product a user can add to their cart
Current Status: Guard is {{ $setting->isEnabled() ? 'enabled' : 'disabled' }}
@endsection