@extends('admin.layouts.app') @push('admin_css') @endpush @section('content')

{{ @($coupon != null)? 'Edit': 'Add'}} {{\App\Helpers\TranslationHelper::translate('Coupon')}}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if (@($coupon != null))
@method('PUT') @else @endif @csrf
@error('coupon') {{ $message }} @enderror
@error('discount') {{ $message }} @enderror
@error('start_date') {{ $message }} @enderror
@error('end_date') {{ $message }} @enderror
@endsection @push('scripts') @endpush