问答 / 0 / 2 / 创建于 6年前
我觉得可以增加一个密码重设成功的提示
Illuminate\Auth\Events\PasswordReset 里面有个function sendResetResponse,把with('status' 替换成with('success'就可以了
这个本来就是有的,直接修改视图文件即可。比如可以在resources/views/static_pages/home.blade.php中添加
resources/views/static_pages/home.blade.php
@if (session('status')) <div class="alert alert-success"> {{ session('status') }} </div> @endif
我要举报该,理由是:
推荐文章: