@include('helpers.form_control', [
'class' => 'numeric',
'type' => 'text',
'name' => 'plan[general][frequency_amount]',
'value' => $plan->frequency_amount,
'help_class' => 'plan',
'rules' => $plan->generalRules(),
])
@include('helpers.form_control', ['type' => 'select',
'name' => 'plan[general][frequency_unit]',
'value' => $plan->frequency_unit,
'options' => $plan->timeUnitOptions(),
'help_class' => 'plan',
])