33 lines
1.5 KiB
PHP
33 lines
1.5 KiB
PHP
<h1 class="card-title text-xl mb-2">Admin anlegen</h1>
|
|
<p class="card-subtle mb-6">Standard-Administrator für den ersten Login.</p>
|
|
|
|
<div class="space-y-5 w-full">
|
|
<div>
|
|
<label class="block text-sm text-gray-300 mb-1" for="admname">Admin-Name</label>
|
|
<input id="admname" type="text" wire:model.defer="form_admin_name"
|
|
class="glass-input w-full py-3 px-4">
|
|
@error('form_admin_name') <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="admemail">E-Mail</label>
|
|
<input id="admemail" type="email" wire:model.defer="form_admin_email"
|
|
class="glass-input w-full py-3 px-4">
|
|
@error('form_admin_email') <p class="text-red-400 text-xs mt-1">{{ $message }}</p> @enderror
|
|
</div>
|
|
|
|
<div class="grid md:grid-cols-2 gap-4">
|
|
<div>
|
|
<label class="block text-sm text-gray-300 mb-1" for="admpw">Passwort</label>
|
|
<input id="admpw" type="password" wire:model.defer="form_admin_password"
|
|
class="glass-input w-full py-3 px-4">
|
|
@error('form_admin_password') <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="admpw2">Passwort bestätigen</label>
|
|
<input id="admpw2" type="password" wire:model.defer="form_admin_password_confirmation"
|
|
class="glass-input w-full py-3 px-4">
|
|
</div>
|
|
</div>
|
|
</div>
|