Laravel 4 uses - to separate the names of long actions, so in this case your action will look like this
public function postPasswordReset
and your url will look like
/account/password-reset
However, I recommend using one of the built-in helpers of the routerβs URL, for example HTML::linkAction() , URL::action() or if you use a form, simply specify 'action' => ' YourController@YourAction '
Docs: http://laravel.com/docs/html#opening-a-form
source share