@extends('layouts.app_admin') @section('content')
Dashboard >
Coupon List >
Add coupon
{{ csrf_field() }}
Coupon Code
*
@if ($errors->has('coupon_code'))
{{ $errors->first('coupon_code') }}
@endif
Min Order Amount
*
@if ($errors->has('amount'))
{{ $errors->first('amount') }}
@endif
Percentage
*
@if ($errors->has('percentage'))
{{ $errors->first('percentage') }}
@endif
Description
{{ $coupon->description }}
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
Status
*
Select Coupon Status
status == 'active') selected @endif >Active
status == 'inactive') selected @endif >Inactive
Add
Cancel
@endsection