user13156769
user13156769

Reputation:

Missing required parameters for [Route: profiles.edit] [URI: profiles/{user}/edit]. (View: D:\sites\eyiyce1\resources\views\profiles\show.blade.php)

This is my link

<a href="{{ route('profiles.edit', ['username' => $user->username]) }}" >Edit informations</a>

this is the error

Missing required parameters for [Route: profiles.edit] [URI: profiles/{user}/edit]. (View: D:\sites\eyiyce1\resources\views\profiles\show.blade.php)

Please help me

Upvotes: 1

Views: 513

Answers (1)

user8034901
user8034901

Reputation:

Your parameter is user, not username. Either change the link to

<a href="{{ route('profiles.edit', ['user' => $user]) }}" >Edit informations</a>

OR

change your route parameter to "username":

profiles/{username}/edit

https://laravel.com/docs/master/routing#route-parameters

Upvotes: 1

Related Questions