Old UniVate Website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. @extends('master')
  2. @section('title', 'Password reset')
  3. @section('description', '')
  4. @section('keywords', '')
  5. @section('content')
  6. <div class="container">
  7. <div class="row justify-content-center">
  8. <div class="col-md-8">
  9. <br><br>
  10. <div class="card">
  11. <div class="card-header"><h5 style="color:white;">Reset Password</h5></div>
  12. <div class="card-body">
  13. <form method="POST" action="{{ route('password.update') }}">
  14. @csrf
  15. <input type="hidden" name="token" value="{{ $token }}">
  16. <div class="form-group row">
  17. <label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label>
  18. <div class="col-md-6">
  19. <input id="email" type="email" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" name="email" value="{{ $email ?? old('email') }}" required autofocus>
  20. @if ($errors->has('email'))
  21. <span class="invalid-feedback" role="alert">
  22. <strong>{{ $errors->first('email') }}</strong>
  23. </span>
  24. @endif
  25. </div>
  26. </div>
  27. <div class="form-group row">
  28. <label for="password" class="col-md-4 col-form-label text-md-right">{{ __('Password') }}</label>
  29. <div class="col-md-6">
  30. <input id="password" type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" name="password" required>
  31. @if ($errors->has('password'))
  32. <span class="invalid-feedback" role="alert">
  33. <strong>{{ $errors->first('password') }}</strong>
  34. </span>
  35. @endif
  36. </div>
  37. </div>
  38. <div class="form-group row">
  39. <label for="password-confirm" class="col-md-4 col-form-label text-md-right">{{ __('Confirm Password') }}</label>
  40. <div class="col-md-6">
  41. <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
  42. </div>
  43. </div>
  44. <div class="form-group row mb-0">
  45. <div class="col-md-6 offset-md-4">
  46. <button type="submit" class="btn btn-primary">
  47. {{ __('Reset Password') }}
  48. </button>
  49. </div>
  50. </div>
  51. </form>
  52. </div>
  53. </div>
  54. <br><br>
  55. </div>
  56. </div>
  57. </div>
  58. @stop