@extends('layouts.admin') @section('title', 'Edit Domain') @section('content')

Edit Domain

Back to Domains
Domain Information
@csrf @method('PUT')
Domain Details
Your main domain name (e.g., example.com) @error('domain')
{{ $message }}
@enderror
Optional subdomain prefix (e.g., www, shop, blog) @error('subdomain')
{{ $message }}
@enderror
is_active) ? 'checked' : '' }}> Domain will be active immediately after update

Admin User Information

Admin user assigned to this domain.

@if($domain->admin)
{{ $domain->admin->name }}
{{ $domain->admin->email }}
@if($domain->admin->status) Active @else Inactive @endif
{{ $domain->admin->created_at->format('M d, Y H:i') }}
To change admin details, you need to update the admin user separately.
@else
No admin user assigned to this domain.
@endif
Cancel
@endsection