@extends('user.layout') @section('content')
@if (session()->has('domain-success'))

{!! nl2br(session()->get('domain-success')) !!}

@endif @if ($errors->has('custom_domain'))

{!! $errors->first('custom_domain') !!}

@endif
{{ __('Custom_Domain') }}
@if (empty($rcDomain) || $rcDomain->status != 0) @endif
@if (empty($rcDomain))

{{ __('Requested_custom_domain_not_available') }}

@else
{{ __('Requested_Domain') }} {{ __('Current_Domain') }}
@if ($rcDomain->status == 0) {{$rcDomain->requested_domain}} @else - @endif @if (getCdomain(Auth::user())) @php $cdomain = getCdomain(Auth::user()); @endphp {{$cdomain ?? '-'}} @else - @endif
@endif

{{ $be->cname_record_section_title }}

{!! $be->cname_record_section_text !!}
@endsection