{!! Form::label('name', trans('app.form.name') . '*', ['class' => 'with-help']) !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.subscription_name'), 'required']) !!}
{!! Form::label('plan_id', trans('app.form.subscription_plan_id') . '*', ['class' => 'with-help']) !!} {{-- --}} {!! Form::text('plan_id', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.subscription_plan_id'), 'required']) !!}
{!! trans('help.subscription_plan_id') !!}
{!! Form::label('cost', trans('app.form.cost_per_month') . '*', ['class' => 'with-help']) !!}
@if (get_currency_prefix()) {{ get_currency_prefix() }} @endif {!! Form::number('cost', null, ['class' => 'form-control', 'step' => 'any', 'placeholder' => trans('app.placeholder.subscription_cost'), 'required']) !!} @if (get_currency_suffix()) {{ get_currency_suffix() }} @endif
{{ Form::hidden('featured', 0) }} {!! Form::checkbox('featured', null, null, ['id' => 'featured', 'class' => 'icheckbox_line']) !!} {!! Form::label('featured', trans('app.form.featured')) !!}
{!! Form::label('team_size', trans('app.form.team_size') . '*', ['class' => 'with-help']) !!}
{!! Form::number('team_size', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.team_size'), 'required']) !!}
{!! Form::label('inventory_limit', trans('app.form.inventory_limit') . '*', ['class' => 'with-help']) !!}
{!! Form::number('inventory_limit', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.inventory_limit'), 'required']) !!}
{!! Form::label('marketplace_commission', trans('app.form.marketplace_commission') . '*', ['class' => 'with-help']) !!}
{!! Form::number('marketplace_commission', null, ['class' => 'form-control', 'step' => 'any', 'placeholder' => trans('app.placeholder.marketplace_commission'), 'required']) !!} {{ trans('app.percent') }}
{!! trans('help.this_will_overwrite_by_dynamic_commission') !!}
{!! Form::label('transaction_fee', trans('app.form.transaction_fee') . '*', ['class' => 'with-help']) !!}
@if (get_currency_prefix()) {{ get_currency_prefix() }} @endif {!! Form::number('transaction_fee', null, ['class' => 'form-control', 'step' => 'any', 'placeholder' => trans('app.placeholder.transaction_fee'), 'required']) !!} @if (get_currency_suffix()) {{ get_currency_suffix() }} @endif
{!! trans('help.transaction_fee_will_charge') !!}
{!! Form::label('best_for', trans('app.form.best_for'), ['class' => 'with-help']) !!} {!! Form::text('best_for', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.subscription_best_for')]) !!}

* {{ trans('app.form.required_fields') }}