@extends('layouts.app') @section('content')
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'top'))
{!! $pageContent->page_content_top !!}
@endif

Child Panel

@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@if ($errors->any()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif
Please visit your registrar's dashboard to change nameservers to:
- ns1.aularental.com
- ns2.aularental.com
@csrf @method('POST')
@if (!empty($panel_logs)) @foreach ($panel_logs as $panel_log) @endforeach @endif
# Domain Currency Username Password Date Status
{{ $panel_log->id }} {{ $panel_log->domain }} {{ $panel_log->currency }} {{ $panel_log->username }} {{ $panel_log->password }} {{ $panel_log->created }} @if ($panel_log->status == 'renewal')
@csrf
@elseif($panel_log->status == 'active') Active @elseif($panel_log->status == 'pending') Pending @elseif($panel_log->status == 'unpaid') Pending @else Disabled @endif
@if (isset($pageContent) && !is_null($pageContent) && ($pageContent->content_place == 'both' || $pageContent->content_place == 'bottom'))
{!! $pageContent->page_content_bottom !!}
@endif
@include('layouts.footer') @endsection @section('script') @endsection