Laravel 5.5.缺少[Route:password.request]所需的参数 [英] Laravel 5.5. Missing required parameters for [Route: password.request]

查看:127
本文介绍了Laravel 5.5.缺少[Route:password.request]所需的参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的路线中包含以下内容:

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

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

My reset.blade under auth is looks like

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

When I tried to access http://127.0.0.1:8000/administrator/password/reset/2dfc0ea2306e3d60dcc915b26cefc8779921bf99183084b3d765cf0a348f32c6 , it show me the error;

缺少[Route:password.request] [URI:必需的参数: 管理员/密码/重置/{令牌}]. (看法: /var/www/html/shoptomydoor/resources/views/auth/passwords/reset.blade.php)

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

推荐答案

它写错了,您在通过route(...)生成URL时未提供令牌,应为route('password.request', ['token' => $token])评论. 改成这个.转到您的模板页面,然后将下面的代码添加到您的表单标签操作中.

Its written right in the error, you are not providing token when generating the URL via route(...), it should be route('password.request', ['token' => $token]) as answered in comments. change to this. Go to your template page and then add the code below to your form tag action.

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

因为您要在get参数中传递令牌

because you are passing a token in your get parameter

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

这篇关于Laravel 5.5.缺少[Route:password.request]所需的参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆