方法validateConfirm不存在(Laravel)

Sai*_*nan 3 php laravel

我正在关注Dayle Rees的Laravel教程,尝试构建一个简单的注册页面.

如果我提交带有验证错误的注册表单,页面会重新加载并显示验证错误.但是,当我键入正确的值并提交时,我收到以下错误 -

BadMethodCallException
Method [validateConfirm] does not exist.
Run Code Online (Sandbox Code Playgroud)

这是我的register.blade.php -

<!doctype html>
<html lang="en">
<head>

</head>
<body>

<h1>Registration form</h1>

{{ Form::open(array('url' => '/registration')) }}

    {{-- Username field. ------------------------}}
    {{ Form::label('username', 'Username') }}
    {{ Form::text('username') }}
    {{ $errors->first('username', '<span class="error">:message</span>') }}
<br/>
    {{-- Email address field. -------------------}}
    {{ Form::label('email', 'Email address') }}
    {{ Form::email('email') }}
    {{ $errors->first('email', '<span class="error">:message</span>') }}
<br/>
    {{-- Password field. ------------------------}}
    {{ Form::label('password', 'Password') }}
    {{ Form::password('password') }}
    {{ $errors->first('password', '<span class="error">:message</span>') }}
<br/>
    {{-- Password confirmation field. -----------}}
    {{ Form::label('password_confirmation', 'Password confirmation') }}
    {{ Form::password('password_confirmation') }}
<br/>
    {{-- Form submit button. --------------------}}
    {{ Form::submit('Register') }}

{{ Form::close() }}
</body>
</html>
Run Code Online (Sandbox Code Playgroud)

这是我的routes.php [注意:如果我删除密码规则,问题就会消失]

Route::get('/', function()
{
    return View::make('register');

});

Route::post('/registration', function()
{
    // Fetch all request data.
    $data = Input::all();

    // Build the validation constraint set.
    $rules = array(
        'username'   => 'required|min:3|max:32',
        'email'      => 'required|email',
        'password'   => 'required|confirm|min:3'
    );

    // Create a new validator instance.
    $validator = Validator::make($data, $rules);

    if ($validator->passes()) {
        // Normally we would do something with the data.
        return 'Data was saved.';
    }

    return Redirect::to('/')->withErrors($validator);
});
Run Code Online (Sandbox Code Playgroud)

Sai*_*nan 9

问题似乎是由于使用confirm而不是confirmed.解决!