Questions tagged [laravel-ui]

45 questions
0
votes
1 answer

Should I use laravel/ui to integrate ReactJs into a Laravel project

Is there benefits or downsides to using composer require laravel/ui for scaffolding a Laravel with ReactJs project instead of installing ReactJs with npm manually and editing webpack.mix.js mix.js('resources/js/app.jsx', 'public/js') …
medilies
  • 1,811
  • 1
  • 8
  • 32
0
votes
0 answers

How to create login with email from related table on Laravel?

I have 2 tables with the names of users and admins. users: id, username, password, admin_id admins: id, email I use login with laravel UI with default username from the users table. I want to do the login auth with username and email. The username…
syslog
  • 1
0
votes
1 answer

These credentials do not match our records, Laravel mongodb

I'm using Laravel 8 and I install MongoDB v5.0.6 using jenssegers/mongodb package, and the communication was good. I run the migration and I add a new user via the register page. But when I try to login using the same credentials that I use on the…
Malki Mohamed
  • 1,578
  • 2
  • 23
  • 40
0
votes
1 answer

Add login condition to laravel ui auth

I am using laravel ui auth package for my login. But i want to add new condition for the user to login besides email and password which is isBanned boolean. However, i dont know where and files for me to edit to add the new condition.
0
votes
1 answer

There isn't displays authentication block in Laravel project

I'm completely new in Laravel. I don't understand why authentication block doesn't displays after I installed laravel/ui and php artisan make:auth command. These pages have been added. But there aren't any special routes in routes list. code
0
votes
1 answer

Creating admins table separate in Laravel 8

I am creating a Laravel project for the users. Laravel has its own laravel/ui package, but I am creating its admin panel too, and I am a bit confused about what I should do for admins. Also, I am confused about the security for the admin panel. So…
0
votes
1 answer

customize login in Laravel Breeze

I want to customize Laravel Breeze's login logic and users can login with username and mobile for example, in previous version of Laravel, login logic uses AuthenticatesUser trait and I could override methods and customize easily, but now there is…
0
votes
1 answer

Bootstrap does not load in login and register routes

I wanted to install a new project of Laravel 8, so I coded this: laravel new projectname Then: composer require laravel/ui And after that: php artisan ui bootstrap --auth And finally: npm install && npm run dev but when I load the page login, it…
user9259038
0
votes
1 answer

Laravel: Register is submitting null value for Username even when filled

When registering a new user, I want them to pick a unique username. Everything worked with the username when I used Jetstream but when I rebuilt with Laravel Fortify and Laravel UI, the username is null regardless of what the user enters in the…
0
votes
2 answers

Manually installing laravel/ui results in error

I'm trying to install the Laravel/ui package into an existing Laravel 7.28.4 project. I've installed the package on my local machine and uploaded the vendor/laravel/ui and vendor/composer folder manually to the remote server. I've done it this way…
Matthijspc
  • 29
  • 1
  • 10
0
votes
1 answer

Laravel 7 Muti Auth using Laravel UI

I am working on a small food website for my Uncle's shop. Webshop can have different types of Users: Admin, Customer, and, Delivery boys. Each user has different tables in the database. I have updated also config/auth.php accordingly but still…
Phoenix404
  • 898
  • 1
  • 14
  • 29
0
votes
2 answers

Installing packages like Laravel UI

I am new to Laravel and I am confused with these snippets that I got automatically when I installed the laravel UI by using the command compose require laravel/ui I am not quite getting what it's trying to do. @if (Route::has('login'))
A.M.Usmani
  • 23
  • 7
0
votes
0 answers

Why does my Login only work in these specific circumstances?

I am using laravel/ui with Laravel 7.15.0 and PHP7.3 to build a login for my website, but I have issues logging in my user. I have the checkmark option for the remember_token on my login page. What is happening on my login page First case:…
Prog345
  • 43
  • 4
0
votes
1 answer

Trying to install laravel/ui composer is failing

I am trying to install the laravel/ui for Laravel 6.4, but when I try to install through composer I get the error message Your requirements could not be resolved to an installable set of packages. Problem 1 - The requested package…
Ellis Thompson
  • 408
  • 6
  • 18
-1
votes
1 answer

UserController not found

i have my blade file like this:
1 2
3