我有这个异常错误:

Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException

当我尝试执行我的项目时 .
Route :

Route::get('ouvrircompte', function()
    {
        return View::make('user.ouvrircompte')
        ->with('title', 'Reserver');
         });


     Route::post('ouvrircompte', 'UserController@ouvrircompte');

Controller :

public function ouvrircompte()
{
$credentials = array(
    'email' => Input::get('email'),
    'password' => Input::get('password'),
    );

    try{
        $user = Sentry::authenticate($credentials, false);
        $user_id=$user->id;
        if($user)
        {
            Session::put('user_id', $user_id);
            return Redirect::to('user/confirmReserver')->with('user_id', $user_id);
        }
    }
    catch (\Exception $e)
    {
        return Redirect::to('user/ouvrircompte')->withErrors(array('ouvrircompte' => $e->getMessage()));
    }
}

view :

<form method="post" action="user/confirmReserver">
<button class="btn btn-success" type="submit" value="ouvrircompte">Envoyer</button>

当我提交表格时,这显示我错误 .