Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/qirolab/laravel-fortify-example

Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.
https://github.com/qirolab/laravel-fortify-example

bootstrap fortify laravel laravel-fortify laravel-framework laravel8

Last synced: about 10 hours ago
JSON representation

Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.

Awesome Lists containing this project

README

        

# Laravel Fortify Example
Laravel Authentication Scaffold using Laravel Fortify and Bootstrap.

## Video Tutorials
1. [Authentication Scaffolding Using Laravel Fortify](https://www.youtube.com/watch?v=CLsyHP7x0N0)
2. [Forget Password & User Profile Update with Laravel Fortify](https://www.youtube.com/watch?v=NTc5FXmnWYc)
3. [Email Verification using Laravel Fortify](https://www.youtube.com/watch?v=X0ebWjcQ-uc)
4. [Two Factor Authentication (2FA) with Laravel Fortify](https://www.youtube.com/watch?v=rDCqS277dVQ)

## How To Use This?

Download or clone this repo
```shell
$ git clone https://github.com/qirolab/laravel-fortify-example.git
```

Install all dependency required by Laravel.
```shell
$ composer install
```

Generate app key, configure `.env` file and do migration.
```shell
# create copy of .env
$ cp .env.example .env

# create Laravel key
$ php artisan key:generate

# run migration
$ php artisan migrate
```