@extends('layouts.hosting') @section('title', $title . ' — Ladill Hosting') @section('content')
← Overview

{{ $title }}

Select a hosting account to manage

@foreach($accounts as $account)
@if($account->product?->type === 'wordpress') @include('partials.wordpress-icon', ['class' => 'h-6 w-6']) @else @endif

{{ $account->linkedDomainLabel() ?? $account->username }}

{{ $account->username }} · {{ $account->product?->name ?? 'Hosting' }} {{ ucfirst($account->status) }}
@endforeach @foreach ($legacyOrders ?? [] as $order)

{{ $order->domain_name ?: 'Legacy hosting' }}

{{ $order->cpanel_username ?: 'Legacy account' }} · {{ $order->plan_name ?? 'Legacy hosting' }} {{ ucfirst($order->status) }} Legacy
@endforeach

Need another hosting account?

Choose a plan that fits your needs

@endsection