Skip to content

Commit

Permalink
update csrf fields to new @csrf
Browse files Browse the repository at this point in the history
  • Loading branch information
Hassan Azimi committed May 18, 2019
1 parent 74e47a4 commit e2de618
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/auth/passwords/email.blade.php
Expand Up @@ -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">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/passwords/reset.blade.php
Expand Up @@ -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 }}">

Expand Down

0 comments on commit e2de618

Please sign in to comment.