Top "Laravel-authentication" questions

Laravel ships with several pre-built authentication controllers for user registration, authentication, and password reset.

Checking which `guard` is loggedin

I have a multiauth laravel 5.2 app, with the fallowing guards defined on config/auth.php: ... 'admin' => [ 'driver' => 'session', …

php laravel laravel-5 laravel-blade laravel-authentication
How to get logged in user data into Laravel controller

I am working on laravel 5.4, i have used the auth for user login at client side,now i want the …

php laravel laravel-authentication
Command 'ui' is not defined in laravel 6.0

I start a new project in laravel but my composer installed a fresh version of laravel 6.0.1. Php artisan make:auth …

laravel laravel-6 laravel-authentication
Laravel 6: Call to undefined method App\\User::createToken()

I'm trying to generate a token to authenticate users in my Controller the following way: namespace App\Http\Controllers\API; …

php laravel eloquent laravel-passport laravel-authentication
How to Verify Email Without Asking the User to Login to Laravel

I am developing a Laravel application. My application is using Laravel built-in auth feature. In the Laravel auth when a …

laravel laravel-authentication laravel-controller
Changing Laravel auth table name and column names

I want to change the table name and some column names of laravel auth table. Change table name from 'users' …

laravel laravel-5 laravel-authorization laravel-authentication
Redirect to Custom URL after Registration in Laravel 5.5

I am working on cart in laravel 5.5. Whenever guests click on "Add to cart", i am redirecting to login. If …

laravel laravel-5 redirect laravel-authentication
Laravel Auth manually login by id

I am new to laravel and I am working with a functionality where we insert data in user table with …

laravel laravel-authentication