# Laravel 8 Auth with Livewire Jetstream Tutorial

## Laravel 8 Auth with Livewire Jetstream Tutorial

By Hardik Savani September 15, 2020 Category : Laravel![](https://a.vdo.ai/core/assets/img/cross.svg)PlayUnmuteLoaded: 1.17%Fullscreen[![VDO.AI](https://a.vdo.ai/core/assets/img/logo.svg)](https://vdo.ai/?utm_medium=video\&utm_term=itsolutionstuff.com\&utm_source=vdoai_logo)Now, let's see post of laravel 8 jetstream auth using livewire. you can see laravel 8 auth with livewire jetstream. we will help you to give example of laravel 8 auth with livewire tutorial. i explained simply step by step laravel 8 authentication livewire example. So, let's follow few step to create example of authentication laravel 8 livewire jetstream.

Few days ago laravel 8 released and they provide lot's of new update. laravel 7 was using laravel/ui for auth scaffolding and now laravel 8 introduce jetstream for login, registration, email verification, two-factor authentication, session management, API support and team management.

Laravel 8 jetstream designed by Tailwind CSS and they provide auth using livewire and Inertia. i will show you how to add auth in laravel 8. you can easily create laravel auth with jetstream step by step.

you can follow bellow step and get it laravel 8 authentication with jetstream using livewire.

Laravel Livewire is a library that makes it simple to build modern, reactive, dynamic interfaces using Laravel Blade, Laravel controller and Laravel validation.

Livewire provide way to write your ajax with laravel blade, validation and all, you can use as javascript framework. so let's see bellow step to create auth using laravel 8 livewire.

**Install Laravel 8:**

here, we need to install laravel 8 application using composer command.

```
composer create-project --prefer-dist laravel/laravel blog
```

**Install Jetstream:**

Now, in this step, we need to use composer command to install jetstream, so let's run bellow command and install bellow library.

```
composer require laravel/jetstream
```

**Create Auth with Livewire:**

now, we need to create authentication using bellow command. you can create basic login, register and email verification. if you want to create team management then you have to pass addition parameter. you can see bellow commands:

```
php artisan jetstream:install livewire  OR  php artisan jetstream:install livewire --teams
```

Now, let's node js package:

```
npm install
```

let's run package:

```
npm run dev
```

now, we need to run migration command to create database table:

```
php artisan migrate
```

Now, you can run and check. they installed all views, actions and all in your laravel 8 application.

**Laravel 8 Jetstream Features**

Laravel 8 Jetstream provides new all feature are configurable. you can see there is a configuration file fortify.php and jetstream.php file where you can enable and disable option for that feature:

config/fortify.php

```
....  'features' => [        Features::registration(),        Features::resetPasswords(),        Features::emailVerification(),        Features::updateProfileInformation(),        Features::updatePasswords(),        Features::twoFactorAuthentication(),    ],...
```

config/jetstream.php

```
....  'features' => [        Features::profilePhotos(),        Features::api(),        Features::teams(),    ],...
```

Now you can run your application by bellow command:

Read Also: [Laravel 8 Authentication using Jetstream Example](https://www.itsolutionstuff.com/post/laravel-8-authentication-using-jetstream-exampleexample.html)

```
php artisan serve
```

now you can see layout bellow as here:

Home Page:

![](https://www.itsolutionstuff.com/upload/laravel-8-auth-1.png)

Login Page:

![](https://www.itsolutionstuff.com/upload/laravel-8-auth-login.png)

Register Page:

![](https://www.itsolutionstuff.com/upload/laravel-8-auth-register.png)

Dashboard Page:

![](https://www.itsolutionstuff.com/upload/laravel-8-auth-dash.png)

Profile Page:

![](https://www.itsolutionstuff.com/upload/laravel-8-auth-profile.png)

Team Page:

![](https://www.itsolutionstuff.com/upload/laravel-8-auth-team.png)

I hope it can help you...


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://learnphp.gitbook.io/learnphp/laravel-advanced/laravel-8-auth-with-livewire-jetstream-tutorial.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
