email.blade.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @extends('layouts.master')
  2. @section('content')
  3. <div class="col-md-8 col-md-offset-2">
  4. <div class="panel panel-default">
  5. <div class="panel-heading">Reset Password</div>
  6. <div class="panel-body">
  7. @if (session('status'))
  8. <div class="alert alert-success">
  9. {{ session('status') }}
  10. </div>
  11. @endif
  12. <form class="form-horizontal" method="POST" action="{{ route('password.email') }}">
  13. {{ csrf_field() }}
  14. <div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
  15. <label for="email" class="col-md-4 control-label">E-Mail Address</label>
  16. <div class="col-md-6">
  17. <input id="email" type="email" class="form-control" name="email" value="{{ old('email') }}" required>
  18. @if ($errors->has('email'))
  19. <span class="help-block">
  20. <strong>{{ $errors->first('email') }}</strong>
  21. </span>
  22. @endif
  23. </div>
  24. </div>
  25. <div class="form-group">
  26. <div class="col-md-6 col-md-offset-4">
  27. <button type="submit" class="btn btn-primary">
  28. Send Password Reset Link
  29. </button>
  30. </div>
  31. </div>
  32. </form>
  33. </div>
  34. </div>
  35. </div>
  36. @endsection