File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/tailwind-stubs/views/auth Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1414 <div class =" flex items-stretch mb-3" >
1515 <label for =" email" class =" text-right font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4" >E-Mail Address</label >
1616 <div class =" flex flex-col w-3/4" >
17- <input id =" email" type =" email" class =" flex-grow h-8 px-2 border rounded {{ $errors -> has (' email' ) ? ' border-red-dark' : ' border-grey-light' } }" name =" email" value =" {{ old (' email' ) } }" autofocus >
17+ <input id =" email" type =" email" class =" flex-grow h-8 px-2 border rounded {{ $errors -> has (' email' ) ? ' border-red-dark' : ' border-grey-light' } }" name =" email" value =" {{ old (' email' ) } }" required autofocus >
1818 {!! $errors -> first (' email' , ' <span class="text-red-dark text-sm mt-2">:message</span>' ) ! !}
1919 </div >
2020 </div >
2121
2222 <div class =" flex items-stretch mb-4" >
2323 <label for =" password" class =" text-right font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4" >Password</label >
2424 <div class =" flex flex-col w-3/4" >
25- <input id =" password" type =" password" class =" flex-grow h-8 px-2 rounded border {{ $errors -> has (' password' ) ? ' border-red-dark' : ' border-grey-light' } }" name =" password" >
25+ <input id =" password" type =" password" class =" flex-grow h-8 px-2 rounded border {{ $errors -> has (' password' ) ? ' border-red-dark' : ' border-grey-light' } }" name =" password" required >
2626 {!! $errors -> first (' password' , ' <span class="text-red-dark text-sm mt-2">:message</span>' ) ! !}
2727 </div >
2828 </div >
You can’t perform that action at this time.
0 commit comments