Skip to content

Commit

Permalink
set fully url forget and reset password action (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
joisarjignesh authored Sep 10, 2020
1 parent a3f1ea0 commit 2e48043
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stubs/resources/views/auth/forgot-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<x-jet-validation-errors class="mb-4" />

<form method="POST" action="/forgot-password">
<form method="POST" action="{{ route('password.email') }}">
@csrf

<div class="block">
Expand Down
2 changes: 1 addition & 1 deletion stubs/resources/views/auth/reset-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<x-jet-validation-errors class="mb-4" />

<form method="POST" action="/reset-password">
<form method="POST" action="{{ route('password.update') }}">
@csrf

<input type="hidden" name="token" value="{{ $request->route('token') }}">
Expand Down

0 comments on commit 2e48043

Please sign in to comment.