@extends('layouts.app') @section('title', __('master::lang.superadmin') . ' | Coupon') @section('content') @include('master::layouts.nav')

@lang('master::lang.add_new_coupon')

{!! Form::open([ 'url' => action([\Modules\Master\Http\Controllers\CouponController::class, 'store']), 'method' => 'post', 'id' => 'create_coupon', ]) !!}
{!! Form::label('code', __('master::lang.coupon_code') . '*') !!} {!! Form::text('code', null, [ 'class' => 'form-control', 'required', 'placeholder' => __('master::lang.coupon_code'), ]) !!}
{!! Form::label('discount_percent', __('master::lang.discount') . ' (%) *') !!} {!! Form::number('discount_percent', null, [ 'class' => 'form-control', 'required', 'placeholder' => __('master::lang.discount'), 'step' => '0.01', 'min' => 0, 'max' => 100, ]) !!}
{!! Form::label('usage_limit', __('master::lang.usage_limit')) !!} {!! Form::number('usage_limit', null, [ 'class' => 'form-control', 'placeholder' => __('master::lang.usage_limit'), 'step' => '1', 'min' => 1, ]) !!}
{!! Form::label('start_date', __('master::lang.start_date')) !!} {!! Form::text('start_date', null, [ 'class' => 'form-control', 'placeholder' => __('master::lang.start_date'), 'id' => 'start_date', 'readonly', ]) !!}
{!! Form::label('end_date', __('master::lang.end_date')) !!} {!! Form::text('end_date', null, [ 'class' => 'form-control', 'placeholder' => __('master::lang.end_date'), 'id' => 'end_date', 'readonly', ]) !!}
{!! Form::submit(__('messages.submit'), ['class' => 'tw-dw-btn tw-dw-btn-success tw-text-white tw-dw-btn-lg']) !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection