@extends('layouts.admin') @section('content')

{{ __('Add Coupon') }}

@csrf
@if ($errors->has('coupon_code_name')) {{ $errors->first('coupon_code_name') }} @endif
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
@if ($errors->has('percentage')) {{ $errors->first('percentage') }} @endif
@if ($errors->has('minimum_amount')) {{ $errors->first('minimum_amount') }} @endif
@endsection @push('style') @endpush @push('script') @endpush