Skip to content

Commit 93bc12e

Browse files
committed
Fix section headings.
1 parent 0472623 commit 93bc12e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

security.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,8 @@ If you are using PHP FastCGI, HTTP Basic authentication will not work correctly
197197
<a name="password-reminders-and-reset"></a>
198198
## Password Reminders & Reset
199199

200+
### Model & Table
201+
200202
Most web applications provide a way for users to reset their forgotten passwords. Rather than forcing you to re-implement this on each application, Laravel provides convenient methods for sending password reminders and performing password resets. To get started, verify that your `User` model implements the `Illuminate\Auth\Reminders\RemindableInterface` contract. Of course, the `User` model included with the framework already implements this interface.
201203

202204
**Implementing The RemindableInterface**
@@ -218,7 +220,7 @@ Next, a table must be created to store the password reset tokens. To generate a
218220

219221
php artisan migrate
220222

221-
**Sending A Password Reminder**
223+
### Password Reminder Controller
222224

223225
Now we're ready to generate the password reminder controller. To automatically generate a controller, you may use the `auth:reminders-controller` Artisan command, which will create a `RemindersController.php` file in your `app/controllers` directory.
224226

0 commit comments

Comments
 (0)