Browse Source

Merge pull request #2929 from barryvdh/patch-3

Add note about expire time
Taylor Otwell 11 years ago
parent
commit
e3cb29a397
1 changed files with 2 additions and 1 deletions
  1. 2 1
      app/views/emails/auth/reminder.blade.php

+ 2 - 1
app/views/emails/auth/reminder.blade.php

@@ -7,7 +7,8 @@
 		<h2>Password Reset</h2>
 
 		<div>
-			To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.
+			To reset your password, complete this form: {{ URL::to('password/reset', array($token)) }}.<br/>
+			This link will expire in {{ Config::get('auth.reminder.expire', 60) }} minutes.
 		</div>
 	</body>
 </html>