@section('site_title', formatTitle([__('Edit'), __('Coupon'), config('settings.title')])) @include('shared.breadcrumbs', ['breadcrumbs' => [ ['url' => route('admin.dashboard'), 'title' => __('Admin')], ['url' => route('admin.coupons'), 'title' => __('Coupons')], ['title' => __('Edit')], ]])

{{ __('Edit') }}

{{ __('Coupon') }} @if($coupon->trashed()) {{ __('Disabled') }} @endif
@include('admin.coupons.partials.menu')
@include('shared.message')
@csrf
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ __('Copy') }}
@if ($errors->has('code')) {{ $errors->first('code') }} @endif
@if ($errors->has('days')) {{ $errors->first('days') }} @endif
%
@if ($errors->has('percentage')) {{ $errors->first('percentage') }} @endif
@if ($errors->has('quantity')) {{ $errors->first('quantity') }} @endif
@if ($errors->has('redeems')) {{ $errors->first('redeems') }} @endif