Update login.blade.php

This commit is contained in:
Mathew Hany 2015-02-26 01:49:18 -08:00
parent 4e0ad9e6fc
commit 7ea1213884
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
</div> </div>
@endif @endif
<form class="form-horizontal" role="form" method="POST" action="/auth/login"> <form class="form-horizontal" role="form" method="POST" action="{{ url('/auth/login') }}">
<input type="hidden" name="_token" value="{{ csrf_token() }}"> <input type="hidden" name="_token" value="{{ csrf_token() }}">
<div class="form-group"> <div class="form-group">
@ -49,7 +49,7 @@
<div class="col-md-6 col-md-offset-4"> <div class="col-md-6 col-md-offset-4">
<button type="submit" class="btn btn-primary">Login</button> <button type="submit" class="btn btn-primary">Login</button>
<a class="btn btn-link" href="/password/email">Forgot Your Password?</a> <a class="btn btn-link" href="{{ url('/password/email') }}">Forgot Your Password?</a>
</div> </div>
</div> </div>
</form> </form>