HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/ai.naniguide.com/resources/views/tracking_domains/_form.blade.php
{{ csrf_field() }}

<div class="row">
	<div class="col-sm-6 col-md-6">
		<label class="mb-3 font-weight-semibold">{{ trans('messages.domain_name') }}</label>
		<div class="tracking-domain-scheme-name">			
			@include('helpers.form_control', [
				'type' => 'select',
				'class' => '',
				'name' => 'scheme',
				'label' => '',
				'value' => $domain->scheme,
				'help_class' => 'tracking_domain',
				'options' => App\Model\Setting::isYes('tracking_domain.enable_https') == false ? [
					['text' => 'HTTP', 'value' => 'http'],
				] : [
					['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',
			])
		</div>
	</div>
</div>
<div class="row">
	<div class="col-sm-6 col-md-6">
		<div class="form-group checkbox-right-switch mt-4">
			{{-- <div class="d-flex">	
				<div class="d-flex align-items-top me-3">
					<label>
						<input type="radio" name="verification_method"
							{{ !$domain->verification_method || $domain->verification_method == App\Model\TrackingDomain::VERIFICATION_METHOD_CNAME ? 'checked' : '' }}
							value="{{ App\Model\TrackingDomain::VERIFICATION_METHOD_CNAME }}" class="styled">
					</label>
				</div>
				<div style="width:100%">
					<label>
						{{ trans('messages.dns_verification') }} 
						<span class="checkbox-description">
							{{ trans('messages.tracking_domain.dns_verification.help') }} 
						</span>
					   
				   </label>
				</div>
	   		</div> --}}

			<div class="d-flex">	
				<div class="d-flex align-items-top me-3">
					<label>
						<input type="radio" name="verification_method"
							{{ true || $domain->verification_method == App\Model\TrackingDomain::VERIFICATION_METHOD_HOST ? 'checked' : '' }}
							value="{{ App\Model\TrackingDomain::VERIFICATION_METHOD_HOST }}" class="styled">
					</label>
				</div>
				<div style="width:100%">
					<label>
						{{ trans('messages.host_redirect_verification') }} 
						<span class="checkbox-description">
							{{ trans('messages.tracking_domain.host_redirect_verification.help') }} 
						</span>
					   
				   </label>
				</div>
				   
				
	   		</div>
			
		</div>
	</div>
</div>
<hr >
<div class="text-left">
	<button class="btn btn-secondary me-2"><i class="icon-check"></i> {{ trans('messages.save') }}</button>
</div>