@extends('layouts.email') @section('title', 'Domains — Ladill Email') @section('content')

Email domains

Add a domain and verify it to create mailboxes on it.

@if($error)
{{ $error }}
@endif
@csrf
@if(!empty($domains))
@foreach($domains as $d) {{ $d['domain'] }} @if($d['active'] ?? false) Verified @else Pending verification @endif @endforeach
@endif
@endsection