Skip to content
This repository has been archived by the owner on May 27, 2022. It is now read-only.

Commit

Permalink
Check that password request route is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
zaknesler committed Nov 9, 2018
1 parent 42888de commit bfdf1d5
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/stubs/views/auth/auth/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@
</form>
</div>

<div class="text-center mt-8">
<a class="text-grey-darker no-underline hover:underline" href="{{ route('password.request') }}">Forgot password?</a>
</div>
@if (Route::has('password.request'))
<div class="text-center mt-8">
<a class="text-grey-darker no-underline hover:underline" href="{{ route('password.request') }}">Forgot password?</a>
</div>
@endif
</div>
</div>
</div>
Expand Down

0 comments on commit bfdf1d5

Please sign in to comment.