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

mathematikboy's avatar

Individualize the Password reset form

Could you please help ? Where is the password resetform displayed by http://127.0.0.1:8000/password/reset , which comes after klicking the forget password link ?

It has just three lines :

http://127.0.0.1:8000/password/reset

Laravel Login Register

Reset Password

E-Mail Address

Send Password Reset Link

I thought its app/views/auth/passwords/reset.blade.php but its not .

0 likes
5 replies
Snapey's avatar

should be....

It may depend what UI preset you used, and of course which Laravel version

SilenceBringer's avatar

Hi @mathematikboy I think you need this one: the laravel/ui package's php artisan ui vue --auth command will create all of the views you need for authentication and place them in the resources/views/auth directory.

Also you can check it in your ResetPasswordController -> showResetForm (from the ResetsPasswords trait)

mathematikboy's avatar

Hi @snapey Thank you for your Answer. I am using Laravel Version 7 and I used the command composer require laravel/ui

		 php artisan ui vue --auth

@silencebringer : Thank you so much . I don't find it a way to edit the form .

I checked the auth directory and I thought its the

app/views/auth/passwords/reset.blade.php form

but when I change there , nothing happens .

mathematikboy's avatar

Thank you @snapey and @silencebringer again ! It was such sort solution . ! In the app/resources/view/auth/passwords directory. There is a blade file called ,,email.blade.php". There is also reset.blade.php file.

But the for the form displayed in ,,http://127.0.0.1:8000/password/reset " link is email.blade.php .

I found it and changed it accordingly. However I am still searching for where I can find the description of the relation between the link and the email.blade.php becasue iin the file Its written link the following .

@if (Route::has('password.request'))

{{ __('Forgot Your Password?') }

@endif

Snapey's avatar
Snapey
Best Answer
Level 122

Auth/ForgotPasswordController has all its functionality in this trait SendsPasswordResetEmails

This trait contains

    public function showLinkRequestForm()
    {
        return view('auth.passwords.email');
    }

Please or to participate in this conversation.