in index.blade.php write
{{ Form::open(array('route' => 'login.index', 'role' => 'form')) }}
in routes.php write
Route::get('login', array('as' => 'login.index', 'uses' => 'LoginController@getIndex'));
Route::post('login', array('as' => 'login.entry', 'uses' => 'LoginController@postIndex'));
Maybe something messed up rewriting of their projects.
Error in the properties form is not specified route.
Error in routes.php not indicated what function to call in the controller to your rule.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community