21 lines
908 B
PHP
21 lines
908 B
PHP
<h1 class="card-title text-xl mb-2">Ersteinrichtung</h1>
|
|
<p class="card-subtle mb-6">Bitte gib die Basisinformationen an.</p>
|
|
|
|
<div class="space-y-5 w-full">
|
|
<div>
|
|
<label class="block text-sm text-gray-300 mb-1" for="domain">Domain (FQDN)</label>
|
|
<input id="domain" type="text" wire:model.defer="form_domain"
|
|
placeholder="mail.example.com"
|
|
class="glass-input w-full py-3 px-4">
|
|
@error('form_domain') <p class="text-red-400 text-xs mt-1">{{ $message }}</p> @enderror
|
|
</div>
|
|
|
|
<div>
|
|
<label class="block text-sm text-gray-300 mb-1" for="tz">Zeitzone</label>
|
|
<input id="tz" type="text" wire:model.defer="form_timezone"
|
|
placeholder="Europe/Berlin"
|
|
class="glass-input w-full py-3 px-4">
|
|
@error('form_timezone') <p class="text-red-400 text-xs mt-1">{{ $message }}</p> @enderror
|
|
</div>
|
|
</div>
|