Support the ongoing development of Laravel.io →
posted 9 years ago
Input Forms
Last updated 1 year ago.
0
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,
0

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,

0

Sign in to participate in this thread!

Eventy

Your banner here too?

Ezaqu ezaqu Joined 3 Feb 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.