This is my route.php and I have also given the link of activate account. Then also "InvalidArgumentException Route [account-activate] not defined." this error is coming:
<?php
Route::get('/',array(
'as'=>'home',
'uses'=>'HomeController@home'
));
//unauthenticated grp
Route::group(array('before'=>'guest'), function() {
//cross side request forgery protection
Route::group(array('before'=>'csrf'), function() {
//create acc(POST)
Route::post('/account/create',array(
'as'=>'account-create-post',
'uses'=>'AccountController@postCreate'
));
});
//create acc(GET)
Route::get('/account/create',array(
'as'=>'account-create',
'uses'=>'AccountController@getCreate'
));
});