{{-- mainLayouts extends --}} @extends('layouts.contentLayoutMaster') {{-- Page title --}} @section('title', 'Coupon Edit') @section('vendor-style') @endsection {{-- page style --}} @section('page-style') @endsection @section('content')
@csrf @method('PUT')
Edit Coupon
Coupon Code *
@if ($errors->has('coupon_code'))
{{ $errors->first('coupon_code') }}
@endif
Discount Price *

@if ($errors->has('discount_price'))
{{ $errors->first('discount_price') }}
@endif
{{--
@if ($errors->has('discount_price'))
{{ $errors->first('discount_price') }}
@endif
--}}
Expire Date *
{{-- --}} @if ($errors->has('expire_at'))
{{ $errors->first('expire_at') }}
@endif
Product
Cancel
@endsection {{-- page script --}} @section('page-script') @endsection @section('vendor-script') @endsection