Adefinir  Finale
formpassword.blade.php
Go to the documentation of this file.
1 @extends( "layouts.web_page" )
2 
3 @section('title','Change password')
4 
5 @section('main')
6  @parent
7  <form action="changepassword" method="post">
8  @csrf
9  <div class="form-group">
10  <label for="newpassword">Nouveau Mot de passe :</label> <input type="password" id="newpassword" name="newpassword" required>
11  </div>
12  <div class="form-group">
13  <label for="confirmpassword">Confirmez Mot de passe :</label> <input type="password" id="confirmpassword" name="confirmpassword" required>
14  </div>
15  <input type="submit" class="btn btn-warning" value="Changer mon mot de passe">
16  </form>
17 
18  <small id="pswwarning" class="form-text text-muted">Retournez a <a href="welcome">Home</a>.</small>
19 
20 @endsection