Laravel 5.5。 [路线:password.request] 缺少必需的参数

Laravel 5.5. Missing required parameters for [Route: password.request]

我的路线中有以下内容:

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

我的 reset.blade 在 auth 下看起来像

<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 时,它显示错误;

Missing required parameters for [Route: password.request] [URI: administrator/password/reset/{token}]. (View: /var/www/html/shoptomydoor/resources/views/auth/passwords/reset.blade.php)

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

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

因为您在 get 参数中传递了一个令牌

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