Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.
- Authentication Scaffolding Using Laravel Fortify
- Forget Password & User Profile Update with Laravel Fortify
- Email Verification using Laravel Fortify
- Two Factor Authentication (2FA) with Laravel Fortify
Download or clone this repo
$ git clone https://github.com/qirolab/laravel-fortify-example.git
Install all dependency required by Laravel.
$ composer install
Generate app key, configure .env
file and do migration.
# create copy of .env
$ cp .env.example .env
# create Laravel key
$ php artisan key:generate
# run migration
$ php artisan migrate