Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Amalmax's avatar

how to make php artisan make:auth command login form with My existing menu bar

Hellow, I got problem like this. I am using laravel app with bootstrap theme and menu bar. now I need some login form to admin for CMS. and I used

php artisan make:auth

now it vanish My existing menu and display php artisan make:auth default dash boad. I do not need this type menu bar I need this log in page when admin write like this in url localhost:8000/login

how can I create this type login form using php artisan make:auth

0 likes
3 replies
RonB1985's avatar

php artisan make:auth just creates some default views. You can edit those or just use your own views instead. But when using make:auth, it will publish it's own views and overwrite any existing ones, so you will need to edit them after.

1 like
Amalmax's avatar

@RonB1985 Ok did you mean when I used php artisan make:auth it was create some default files and views. then I should edit app.blade.php and others as I need????

RonB1985's avatar

I'm actually not entirely sure as to what you want :)

My understanding was, that you created your own login and register page, and then used php artisan make:auth and expected everything to work with your own login and register page?

If so, yeah, just use the make:auth command and then edit the login and register page that are automatically created with your own versions :)

Please or to participate in this conversation.