@extends('apex-layouts.main') @section('content')
@csrf

{{$model->name}} Coupon Create

@if ($errors->has('coupon')) {{ $errors->first('coupon') }} @endif
@if ($errors->has('discount')) {{ $errors->first('discount') }} @endif
@if ($errors->has('discountCap')) {{ $errors->first('discountCap') }} @endif
@if ($errors->has('start')) {{ $errors->first('start') }} @endif
@if ($errors->has('end')) {{ $errors->first('end') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
Back
@endsection