@include('helpers.form_control', [
'type' => 'select',
'class' => '',
'name' => 'scheme',
'label' => '',
'value' => $domain->scheme,
'help_class' => 'tracking_domain',
'options' => [
['text' => 'HTTP', 'value' => 'http'],
['text' => 'HTTPS', 'value' => 'https'],
],
])
@include('helpers.form_control', [
'type' => 'text',
'class' => '',
'name' => 'name',
'label' => '',
'value' => $domain->name,
'help_class' => 'tracking_domain',
])