为什么我的 blade 有未定义的变量 - Laravel 4.2

Why my blade have Undefined Variable - Laravel 4.2

这是我的 routes.php

Route::get('registration/verify/{confirmation}', ['as'=>'verify', 'uses'=>'HomeController@verify']);
Route::get('login',     ['as'=>'login', 'uses'=>'HomeController@getLogin']);

在我的 blade 上是这个

然后在我的HomeController.php错误所在的地方

public function verify($confirmation)
{
    $user = User::where('activation_code', '=', $confirmation)->first();

    return Redirect::route('login')
        ->withInput(['email' => $user->email])
        ->with('fuck', 'wtf');
}

我得到了这样的错误

Undefined variable: fuck (View: C:\Program Files (x86)\Ampps\www\tridg\local\app\views\auth\login.blade.php)

我不知道我哪里错了,我坚信这是正确的。

编辑 1:

我什至试过这个

public function verify($confirmation)
{
    $user = User::where('activation_code', '=', $confirmation)->first();
    // $user->active = 1;
    // $user->save();

    return Redirect::route('login', ['fuck'=>'wtf'])
            ->withInput(['email' => $user->email]);
}

没关系,答案是 {{ Session::get('var_name') }} 而不是 {{ $var_name }}