Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 931 Bytes

README.md

File metadata and controls

34 lines (25 loc) · 931 Bytes

Laravel Fortify Example

Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.

Video Tutorials

  1. Authentication Scaffolding Using Laravel Fortify
  2. Forget Password & User Profile Update with Laravel Fortify
  3. Email Verification using Laravel Fortify
  4. Two Factor Authentication (2FA) with Laravel Fortify

How To Use This?

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