Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
update csrf fields to new @csrf
- Loading branch information
Hassan Azimi
committed
May 18, 2019
1 parent
74e47a4
commit e2de618279197dced486e36ac66d8bbae06dbb59
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -16,7 +16,7 @@ | ||
@endif | ||
|
||
<form role="form" method="POST" action="{{ url('/password/email') }}"> | ||
{!! csrf_field() !!} | ||
@csrf | ||
|
||
<!-- E-Mail Address --> | ||
<div class="form-group row"> | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,7 +9,7 @@ | ||
|
||
<div class="card-body"> | ||
<form role="form" method="POST" action="{{ url('/password/reset') }}"> | ||
{!! csrf_field() !!} | ||
@csrf | ||
|
||
<input type="hidden" name="token" value="{{ $token }}"> | ||
|
||