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

{{ trans('messages.sending_quota') }}

{!! trans('messages.options.wording') !!}

@include('helpers.form_control', [ 'type' => 'text', 'class' => 'numeric', 'name' => 'quota_value', 'value' => $server->quota_value, 'help_class' => 'sending_server', 'default_value' => '1000', ])
@include('helpers.form_control', [ 'type' => 'text', 'class' => 'numeric', 'name' => 'quota_base', 'value' => $server->quota_base, 'help_class' => 'sending_server', 'default_value' => '1', ])
@include('helpers.form_control', ['type' => 'select', 'name' => 'quota_unit', 'value' => $server->quota_unit, 'label' => trans('messages.quota_time_unit'), 'options' => Acelle\Model\Plan::quotaTimeUnitOptions(), 'include_blank' => trans('messages.choose'), 'help_class' => 'sending_server', ])

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