Guest User

password.blade.php

a guest
Nov 19th, 2016
706
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <!-- resources/views/auth/password.blade.php -->
  2.  
  3. <form method="POST" action="/password/email">
  4. {!! csrf_field() !!}
  5.  
  6. @if (count($errors) > 0)
  7. <ul>
  8. @foreach ($errors->all() as $error)
  9. <li>{{ $error }}</li>
  10. @endforeach
  11. </ul>
  12. @endif
  13.  
  14. <div>
  15. Email
  16. <input type="email" name="email" value="{{ old('email') }}">
  17. </div>
  18.  
  19. <div>
  20. <button type="submit">
  21. Send Password Reset Link
  22. </button>
  23. </div>
  24. </form>
Add Comment
Please, Sign In to add comment