|
5 | 5 | <div class="flex items-center">
|
6 | 6 | <div class="md:w-1/2 md:mx-auto">
|
7 | 7 | <div class="rounded shadow">
|
8 |
| - <div class="font-bold text-lg bg-grey-light p-3 rounded rounded-t"> |
| 8 | + <div class="font-medium text-lg text-orange-darker bg-orange-lighter p-3 rounded rounded-t"> |
9 | 9 | Reset Password
|
10 | 10 | </div>
|
11 | 11 | <div class="bg-white p-3 rounded rounded-b">
|
|
15 | 15 | <input type="hidden" name="token" value="{{ $token }}">
|
16 | 16 |
|
17 | 17 | <div class="flex items-stretch mb-3">
|
18 |
| - <label for="email" class="font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4">E-Mail Address</label> |
| 18 | + <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> |
19 | 19 | <div class="flex flex-col w-3/4">
|
20 |
| - <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> |
| 20 | + <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="{{ $email or old('email') }}" required autofocus> |
21 | 21 | {!! $errors->first('email', '<span class="text-red-dark text-sm mt-2">:message</span>') !!}
|
22 | 22 | </div>
|
23 | 23 | </div>
|
24 | 24 |
|
25 | 25 | <div class="flex items-stretch mb-3">
|
26 |
| - <label for="password" class="font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4">Password</label> |
| 26 | + <label for="password" class="text-right font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4">Password</label> |
27 | 27 | <div class="flex flex-col w-3/4">
|
28 | 28 | <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>
|
29 | 29 | {!! $errors->first('password', '<span class="text-red-dark text-sm mt-2">:message</span>') !!}
|
30 | 30 | </div>
|
31 | 31 | </div>
|
32 | 32 |
|
33 | 33 | <div class="flex items-stretch mb-3">
|
34 |
| - <label for="password_confirmation" class="font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4">Confirm Password</label> |
| 34 | + <label for="password_confirmation" class="text-right font-semibold text-grey-dark text-sm pt-2 pr-3 align-middle w-1/4">Confirm Password</label> |
35 | 35 | <div class="flex flex-col w-3/4">
|
36 |
| - <input id="password_confirmation" type="password_confirmation" class="flex-grow h-8 px-2 rounded border {{ $errors->has('password_confirmation') ? 'border-red-dark' : 'border-grey-light' }}" name="password" required> |
| 36 | + <input id="password_confirmation" type="password" class="flex-grow h-8 px-2 rounded border {{ $errors->has('password_confirmation') ? 'border-red-dark' : 'border-grey-light' }}" name="password_confirmation" required> |
37 | 37 | {!! $errors->first('password_confirmation', '<span class="text-red-dark text-sm mt-2">:message</span>') !!}
|
38 | 38 | </div>
|
39 | 39 | </div>
|
40 | 40 |
|
41 | 41 | <div class="flex">
|
42 | 42 | <div class="w-3/4 ml-auto">
|
43 |
| - <button type="submit" class="bg-blue hover:bg-blue-dark text-white text-sm font-sembiold py-2 px-4 rounded mr-3"> |
| 43 | + <button type="submit" class="bg-orange hover:bg-orange-dark text-white text-sm font-sembiold py-2 px-4 rounded mr-3"> |
44 | 44 | Reset Password
|
45 | 45 | </button>
|
46 | 46 | </div>
|
|
0 commit comments