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