Route::get('/account/create', array('uses', => 'AccountController@postCreate', 'as' => 'postCreate'));
Remove the comma after 'uses'.
And turn on error reporting in app/config/app.php
debug => true,
maybe change in Routes
Route::get('/account/create', 'AccountController@getCreate');
to
Route::controller('account', 'AccountController');
and change config to see what the problem from
app/config/app.php
change 'debug' => false,
to 'debug' => true,
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community