@extends('admin.master') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Manage Your Custom Domain

Connect Your Custom Domain

@php // Colors based on current step $s1Color = $step >= 1 ? 'bg-[#F59E0B] text-white shadow-md' : 'bg-gray-200 text-gray-500'; $s2Color = $step >= 2 ? 'bg-[#F59E0B] text-white shadow-md' : 'bg-gray-200 text-gray-500'; $s3Color = $step >= 3 ? 'bg-[#F59E0B] text-white shadow-md' : 'bg-gray-200 text-gray-500'; $t1Color = $step >= 1 ? 'text-[#F59E0B]' : 'text-gray-400'; $t2Color = $step >= 2 ? 'text-[#F59E0B]' : 'text-gray-400'; $t3Color = $step >= 3 ? 'text-[#F59E0B]' : 'text-gray-400'; $l1Color = $step >= 2 ? 'bg-[#F59E0B]' : 'bg-gray-300'; $l2Color = $step >= 3 ? 'bg-[#F59E0B]' : 'bg-gray-300'; @endphp
@if($step > 1) @else 1 @endif
Enter Domain
@if($step > 2) @else 2 @endif
Update Nameserver
3
Connected
@if($step == 1)
@csrf

Enter your domain name

How it works: Enter your domain below. We'll give you nameservers to update at your domain registrar.

Please enter a valid domain name without http/https (e.g., example.com)

@endif @if($step == 2)

Update Nameservers for {{ $customDomain->domain_name }}

Log in to your domain registrar (e.g., Namecheap, GoDaddy) and replace your current nameservers with the ones below.

Nameserver 1

ns1.nebuloid.com

Nameserver 2

ns2.nebuloid.com

DNS changes can take up to 24-48 hours to propagate globally. Once updated, click the verify button below.

@csrf @method('DELETE')
@csrf
@endif @if($step == 3)

Domain Successfully Connected!

Your domain {{ $customDomain->domain_name }} is now active and routing traffic to your storefront.

Visit Store
@csrf @method('DELETE')
@endif
@endsection