@extends('layouts.popup.small') @section('content')
{{ csrf_field() }}

{{ trans('messages.plan.sending_limit') }}

{!! trans('messages.plans.sending_limit.wording') !!}

@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\Plan::quotaTimeUnitOptions(), 'help_class' => 'plan', 'rules' => $plan->rules() ])

{{ trans('messages.sending_limit.close') }}
@endsection