重置密码路由显示Offest错误。
显示错误的路由:/ password / reset
ErrorException(E_NOTICE)未定义的偏移量:0
供应商\ laravel \ framework \ src \ Illuminate \ Support \ Collection.php
/**
* Get an item at a given offset.
*
* @param mixed $key
* @return mixed
*/
public function offsetGet($key)
{
return $this->items[$key];
}
/**
* Set the item at a given offset.
*
* @param mixed $key
* @param mixed $value
* @return void
*/
public function offsetSet($key, $value)
{
if (is_null($key)) {
$this->items[] = $value;
} else {
$this->items[$key] = $value;
有解决方案吗?