Skip to content

Commit a597cad

Browse files
authored
Name input ID
id="email" > id="name". Probably just copy&paste and it sticked.
1 parent 0904144 commit a597cad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tailwindcss-stubs/views/auth/register.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
{{ csrf_field() }}
1313

1414
<div class="flex items-stretch mb-3">
15-
<label for="email" class="text-right font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4">Name</label>
15+
<label for="name" class="text-right font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4">Name</label>
1616
<div class="flex flex-col w-3/4">
17-
<input id="email" type="text" class="flex-grow h-8 px-2 border rounded {{ $errors->has('name') ? 'border-red-dark' : 'border-grey-light' }}" name="name" value="{{ old('name') }}" autofocus>
17+
<input id="name" type="text" class="flex-grow h-8 px-2 border rounded {{ $errors->has('name') ? 'border-red-dark' : 'border-grey-light' }}" name="name" value="{{ old('name') }}" autofocus>
1818
{!! $errors->first('name', '<span class="text-red-dark text-sm mt-2">:message</span>') !!}
1919
</div>
2020
</div>

0 commit comments

Comments
 (0)