@extends('admin.layout.dashboard_master') @section('content')

Edit Voucher

Edit Voucher Details
@csrf @method('PUT')
@error('code')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
Enter the discount value.
@error('value')
{{ $message }}
@enderror
@error('min_spend')
{{ $message }}
@enderror
@error('expiry_date')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
Cancel
Instructions

Follow these guidelines when editing the voucher:

  • Voucher Code:

    Must be unique. Avoid special characters.

  • Voucher Type:

    Select Fixed Amount for direct currency discounts, or Percentage for relative discounts.

  • Voucher Value:

    If type is Percentage, the value must be between 1% and 99%. Values greater than 99% are not allowed.

  • Minimum Spend:

    The minimum order amount required. Set to 0 if there is no minimum spend restriction.

  • Expiry Date:

    The expiration date of the voucher.

@endsection