Save workspace changes

This commit is contained in:
2026-04-18 17:02:56 +02:00
parent f02ea9a711
commit 87d60af5a9
4220 changed files with 1388603 additions and 1554 deletions

View File

@@ -41,8 +41,9 @@
@endphp
<div>
<label class="block text-sm mb-1 text-white/80" for="email">Email</label>
<input id="email" name="email" type="email" required placeholder="you@example.com" value="{{ old('email') }}" class="w-full rounded-lg bg-slate-950/70 border border-white/10 px-4 py-3 text-sm focus:outline-none focus:ring-2 focus:ring-purple-500 text-white" />
<label class="block text-sm mb-1 text-white/80" for="email">Email or legacy username</label>
<input id="email" name="email" type="text" required placeholder="you@example.com or legacy username" value="{{ old('email') }}" class="w-full rounded-lg bg-slate-950/70 border border-white/10 px-4 py-3 text-sm focus:outline-none focus:ring-2 focus:ring-purple-500 text-white" />
<p class="mt-2 text-xs text-white/50">Username sign-in is only available for older accounts that still need to add a real email address.</p>
<x-input-error :messages="$errors->get('email')" class="mt-2" />
</div>