@include('helpers.form_control', [
'type' => 'text',
'class' => 'numeric',
'name' => 'plan[options][sending_quota]',
'value' => $plan->getOption('sending_quota'),
'label' => trans('messages.sending_quota'),
'help_class' => 'plan',
'rules' => $plan->rules()
])
@include('helpers.form_control', [
'type' => 'text',
'class' => 'numeric',
'name' => 'plan[options][sending_quota_time]',
'value' => $plan->getOption('sending_quota_time'),
'label' => trans('messages.quota_time'),
'help_class' => 'plan',
'rules' => $plan->rules()
])
@include('helpers.form_control', ['type' => 'select',
'name' => 'plan[options][sending_quota_time_unit]',
'value' => $plan->getOption('sending_quota_time_unit'),
'label' => trans('messages.quota_time_unit'),
'options' => Acelle\Model\PlanGeneral::quotaTimeUnitOptions(),
'help_class' => 'plan',
'rules' => $plan->rules()
])