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

{{ __('Create New Promocode') }}

@csrf
{{ __('Promo Name') }}({{ __('Required') }})
@error('promo-name')

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

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

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

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

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

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

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

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

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

@enderror
{{ __('Single Usage') }} ({{ __('Optional') }})
@error('usage')

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

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

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

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