23 lines
		
	
	
	
		
			970 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
	
		
			970 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| 
								 | 
							
								{% extends "base.html" %}
							 | 
						||
| 
								 | 
							
								{% block content %}
							 | 
						||
| 
								 | 
							
								<div class="card p-4 shadow-sm">
							 | 
						||
| 
								 | 
							
								    <h2 class="mb-4">{{ _('Change Password') }}</h2>
							 | 
						||
| 
								 | 
							
								    <form method="POST">
							 | 
						||
| 
								 | 
							
								        <input type="hidden" name="csrf_token" value="{{ csrf_token() }}">
							 | 
						||
| 
								 | 
							
								        <div class="mb-3">
							 | 
						||
| 
								 | 
							
								            <label class="form-label">{{ _('Current Password') }}</label>
							 | 
						||
| 
								 | 
							
								            <input type="password" name="current_password" class="form-control" required>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <div class="mb-3">
							 | 
						||
| 
								 | 
							
								            <label class="form-label">{{ _('New Password') }}</label>
							 | 
						||
| 
								 | 
							
								            <input type="password" name="new_password" class="form-control" required>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <div class="mb-3">
							 | 
						||
| 
								 | 
							
								            <label class="form-label">{{ _('Confirm New Password') }}</label>
							 | 
						||
| 
								 | 
							
								            <input type="password" name="confirm_password" class="form-control" required>
							 | 
						||
| 
								 | 
							
								        </div>
							 | 
						||
| 
								 | 
							
								        <button type="submit" class="btn btn-primary">{{ _('Change Password') }}</button>
							 | 
						||
| 
								 | 
							
								    </form>
							 | 
						||
| 
								 | 
							
								</div>
							 | 
						||
| 
								 | 
							
								{% endblock %}
							 |