【发布时间】:2017-11-03 19:40:06
【问题描述】:
在我的编辑表单模型绑定中,我想显示车辆图像,我的视图刀片中有代码:
{!! Form::model($cedit, ['method' => 'PATCH','route' => ['category.update', $cedit->id], 'files' => true]) !!}
<div class="form-group">
<img src="images/{{ $cedit->name }}"/>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</div>
{{ Form::close() }}
我怎样才能实现它?
【问题讨论】: