{{ csrf_field() }}
@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', 'rules' => $domain->rules() ])
@include('helpers.form_control', [ 'type' => 'checkbox', 'class' => '', 'name' => 'dns_verification', 'value' => 1, 'help_class' => 'tracking_domain', 'options' => [0, 1], 'rules' => $domain->rules(), 'readonly' => true, 'disabled' => true, ])