{{-- 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 *
%
Choose percentage
@for ($i = 1; $i < 100; $i++)
discount_price) selected @endif>{{ $i }} %
@endfor
@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
@foreach ($products as $product)
id,$product_ids)) selected @endif>{{ $product->model }}
@endforeach
Cancel
Update
@endsection {{-- page script --}} @section('page-script') @endsection @section('vendor-script') @endsection