Illuminate\Routing\Exceptions\UrlGenerationException
Missing required parameters for [Route: accounts.edit] [URI: accounts/{account}/edit].
An unhandled exception occurred on line 17
14 |
|
---|---|
15 |
|
16 |
|
17 |
|
18 |
|
19 |
|
Solution
In my blade I called "{{ route('accounts.edit') }}" from my resource controller, but you always have to give it a specific parameter when you are using a resource controller. So I had to add $user behind this like so: "{{ route('accounts.edit', $user) }}"
Apr 13, 2021
•
Anyone
Install the browser extension
Found this solution helpful? Try our extension for quick solutions to your Laravel errors.
Add to Chrome - It's free
0 replies