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

Add New Coupon

{!! Form::open(array('url' => 'coupons/update', 'class' => 'form-horizontal edit_form')) !!} {{ 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
Fixed    Percentage
 
 
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
          

@stop