答案 0 :(得分:0)
您似乎将输入作为一种数组传递。 htmlentities()仅适用于字符串类型。 此
<td><input type="text" name="type[]" value="{{ old('type') }}" class="form-control"></td>
应该是
<td><input type="text" name="type" value="{{ old('type.0') }}" class="form-control"></td>
type.0只返回数组中的第一项。