@extends('backend.layouts.form') @section('title', __('Edit coupon | ') . $coupon->code) @section('back', route('admin.coupons.index')) @section('container', 'container-max-lg') @section('content')
@csrf @method('PUT') @if (isExpiry($coupon->expiry_at))
{{ __('This coupon has been expired') }}
@endif
{{ __('Coupon code') }}

{{ __('Enter or generate a coupon code, only characters and numbers are allowed in min 3 and max 20 characters') }}

{{ __('Discount details') }}

{{ __('Enter discount percentage in minimum 1% and max 100%, and set limit for each user starting from 1 minimum') }}

{{ __('Usage details') }}

{{ __('Set the usage details of the coupon, and set expiry date in minimum 5 minutes') }}

@push('scripts_libs') @endpush @endsection