Best laravel framework open-source packages.

Laravel fortify example

Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.
Updated 3 months ago

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