Skip to content

Commit

Permalink
Fix login "remember me"
Browse files Browse the repository at this point in the history
The remember me option does not work correctly, I think to fix it should be changed the following in login.blade.php:

<input name="remember" type="checkbox" value="Remember Me">

to:

<input name="remember" type="checkbox" value="true">
  • Loading branch information
hostingseguro authored Apr 8, 2017
1 parent 160b61f commit d3ace27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/login.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</div>
<div class="checkbox">
<label>
<input name="remember" type="checkbox" value="Remember Me">
<input name="remember" type="checkbox" value="true">
{{ \Lang::get('panel::fields.rememberMe') }}
</label>
<label class="pull-right">
Expand Down

0 comments on commit d3ace27

Please sign in to comment.