formpassword.blade.php 532 B

12345678910111213141516
  1. @extends('layouts.app')
  2. @section('title','Change password')
  3. @section('main')
  4. @parent
  5. <form action="changepassword" method="post">
  6. @csrf
  7. <label for="newpassword">New password</label> <input type="password" id="newpassword" name="newpassword" required>
  8. <label for="confirmpassword">Confirm password</label> <input type="password" id="confirmpassword" name="confirmpassword" required>
  9. <input type="submit" value="Change my password">
  10. </form>
  11. <p>
  12. Go back to <a href="welcome">Home</a>.
  13. </p>
  14. @endsection