Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- resources/views/auth/password.blade.php -->
- <form method="POST" action="/password/email">
- {!! csrf_field() !!}
- @if (count($errors) > 0)
- <ul>
- @foreach ($errors->all() as $error)
- <li>{{ $error }}</li>
- @endforeach
- </ul>
- @endif
- <div>
- Email
- <input type="email" name="email" value="{{ old('email') }}">
- </div>
- <div>
- <button type="submit">
- Send Password Reset Link
- </button>
- </div>
- </form>
Add Comment
Please, Sign In to add comment