{!! Form::model($coupon, [
'url' => action([\Modules\Master\Http\Controllers\CouponController::class, 'update'], $coupon->id),
'method' => 'PUT',
'id' => 'edit_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('used_count', __('master::lang.used_count')) !!}
{!! Form::number('used_count', null, [
'class' => 'form-control',
'readonly',
]) !!}
{!! 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.update'), ['class' => 'tw-dw-btn tw-dw-btn-success tw-text-white tw-dw-btn-lg']) !!}
{!! Form::close() !!}