@lang('master::lang.purchase_subscription')
{!! Form::open([
'url' => route('subdomain.subscriptions.store'),
'method' => 'post',
'id' => 'purchase_subscription_form'
]) !!}
{{-- عدد المستخدمين --}}
{!! Form::label('users_count', __('master::lang.number_of_users'), ['class' => 'tw-font-semibold']) !!}
{!! Form::number('users_count', 1, [
'class' => 'form-control',
'min' => 1,
'id' => 'users_count'
]) !!}
{{-- دورة الفوترة --}}
{!! Form::label('billing_cycle', __('master::lang.billing_cycle'), ['class' => 'tw-font-semibold']) !!}
{{-- حقل الكوبون --}}
{!! Form::label('coupon_code', __('master::lang.coupon_code'), ['class' => 'tw-font-semibold']) !!}
{!! Form::text('coupon_code', null, [
'class' => 'form-control tw-flex-1',
'id' => 'coupon_code',
'placeholder' => __('master::lang.enter_coupon')
]) !!}
{{-- عرض السعر --}}
@lang('master::lang.total_price'):
0.00 د.ع
{{-- الحقول المخفية --}}
{!! Form::hidden('original_price', 0, ['id' => 'original_price']) !!}
{!! Form::hidden('price_after_discount', 0, ['id' => 'price_after_discount']) !!}
{!! Form::hidden('coupon_id', '', ['id' => 'coupon_id']) !!}
{{-- زر الشراء --}}
{!! Form::submit(__('master::lang.buy_now'), ['class' => 'tw-dw-btn tw-dw-btn-success tw-text-white tw-w-full']) !!}
{!! Form::close() !!}