Reputation:
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
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