@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')

{{ __('Edit Promocode') }}: {{ $id->code }}

@method('PUT') @csrf
{{ __('Promocode Name') }}
@error('promo-name')

{{ $errors->first('promo-name') }}

@enderror
{{ __('Status') }}
@error('status')

{{ $errors->first('status') }}

@enderror
{{ __('Promocode Type') }}
@error('promo-type')

{{ $errors->first('promo-type') }}

@enderror
{{ __('Discount') }}
@error('discount')

{{ $errors->first('discount') }}

@enderror
{{ __('Available Quantity') }}
@error('quantity')

{{ $errors->first('quantity') }}

@enderror
{{ __('Multi Usage by the same User') }}
@error('usage')

{{ $errors->first('usage') }}

@enderror
{{ __('Valid Until') }}
@error('valid-until')

{{ $errors->first('valid-until') }}

@enderror
{{ __('Cancel') }}
@endsection @section('js') @endsection