@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



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

   Cancel


@stop