Browse Source

Use helpers.

Taylor Otwell 9 years ago
parent
commit
cd37f40bba
1 changed files with 3 additions and 2 deletions
  1. 3 2
      resources/views/emails/auth/reminder.blade.php

+ 3 - 2
resources/views/emails/auth/reminder.blade.php

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