Files
qds/resources/views/auth/reset-password.blade.php
dhanabalan 3f0d529640
All checks were successful
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Successful in 1m4s
Initial commit for new repo
2025-12-16 17:05:04 +05:30

29 lines
741 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Reset Password</title>
</head>
<body>
<h1>Reset Password</h1>
<form method="POST" action="{{ route('password.update') }}">
@csrf
<input type="hidden" name="token" value="{{ $token }}">
<label>Email:</label>
<input type="email" name="email" value="{{ old('email') }}" required>
<label>New Password:</label>
<input type="password" name="password" required>
<label>Confirm Password:</label>
<input type="password" name="password_confirmation" required>
<button type="submit">Reset Password</button>
</form>
<a href="{{ route('login') }}">Back to login</a>
</body>
</html>