Laravel 5.5。缺少[Route:password.request]所需的参数

时间:2018-05-08 11:17:31

标签: laravel laravel-5 laravel-5.5

我的路线

中有以下内容
Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request');

auth下的 reset.blade 看起来像

<div class="container">
    <div class="row">
        <div class="col-md-8 col-md-offset-2">
            <div class="panel panel-default">
                <div class="panel-heading">Reset Password</div>

                <div class="panel-body">
                    <form class="form-horizontal" method="POST" action="{{ route('password.request') }}">
                        {{ csrf_field() }}

                        <input type="hidden" name="token" value="{{ $token }}">

                        <div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
                            <label for="email" class="col-md-4 control-label">E-Mail Address</label>

                            <div class="col-md-6">
                                <input id="email" type="email" class="form-control" name="email" value="{{ $email or old('email') }}" required autofocus>

                                @if ($errors->has('email'))
                                    <span class="help-block">
                                        <strong>{{ $errors->first('email') }}</strong>
                                    </span>
                                @endif
                            </div>
                        </div>

                        <div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">
                            <label for="password" class="col-md-4 control-label">Password</label>

                            <div class="col-md-6">
                                <input id="password" type="password" class="form-control" name="password" required>

                                @if ($errors->has('password'))
                                    <span class="help-block">
                                        <strong>{{ $errors->first('password') }}</strong>
                                    </span>
                                @endif
                            </div>
                        </div>

                        <div class="form-group{{ $errors->has('password_confirmation') ? ' has-error' : '' }}">
                            <label for="password-confirm" class="col-md-4 control-label">Confirm Password</label>
                            <div class="col-md-6">
                                <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>

                                @if ($errors->has('password_confirmation'))
                                    <span class="help-block">
                                        <strong>{{ $errors->first('password_confirmation') }}</strong>
                                    </span>
                                @endif
                            </div>
                        </div>

                        <div class="form-group">
                            <div class="col-md-6 col-md-offset-4">
                                <button type="submit" class="btn btn-primary">
                                    Reset Password
                                </button>
                            </div>
                        </div>
                    </form>
                </div>
            </div>
        </div>
    </div>
</div>

当我尝试访问http://127.0.0.1:8000/administrator/password/reset/2dfc0ea2306e3d60dcc915b26cefc8779921bf99183084b3d765cf0a348f32c6时,它会显示错误;

  

缺少[Route:password.request]所需的参数[URI:   管理员/密码/复位/ {令牌}]。 (视图:   /var/www/html/shoptomydoor/resources/views/auth/passwords/reset.blade.php)

1 个答案:

答案 0 :(得分:3)

它在错误中写的权利,你在通过路由(...)生成URL时没有提供令牌,它应该是route('password.request', ['token' => $token]),如评论中所回答的那样。 改变这个。转到模板页面,然后将以下代码添加到表单标记操作中。

action="{{ route('password.request', ['token' => $token]) }}"

因为您在get参数中传递了一个标记

Route::get('password/reset/{token}', 'Auth\ResetPasswordController@showResetForm')->name('password.request');