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

Add New Coupon

{{ csrf_field() }}
@if ($errors->has('coupon_name')) {{ $errors->first('coupon_name') }} @endif
@if ($errors->has('coupon_code')) {{ $errors->first('coupon_code') }} @endif

 One Time Use

@if ($errors->has('coupon_eligible_program[]')) {{ $errors->first('coupon_eligible_program[]') }} @endif

 
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif

@stop