I am beginner of laravel 5.3 Now i am trying to edit user details
My routes:
Route::get('/Edit/{id}','RegistrationController@Edit');
View
<td>
{{ Html::link('/Edit', 'Edit', array('id' => $user->id,'class' =>'btn btn-info'), true)}}
</td>
Controller:
public function Edit($id)
{
echo $id;
}
When i click Edit button i get an error like 'NotFoundHttpException in RouteCollection.php line 161:'. What is wrong with me?Please help me