Laravel 表单 - 加载文件字段

Laravel Form - load file field

我的表单中有一个文件字段,如下所示:

<div class="form-group">
    {!! Form::label('pdf', 'PDF Template') !!}
    {!! Form::file('pdf') !!}

    <a href="{{route('download_pdf', ['id' => $template->id])}}">Download current PDF</a>
</div>

我正在使用 laravelcollective 包来创建我的表单。

现在在我的 编辑页面上 我想加载当前文件(设置文件字段)。但是我该怎么做呢?

您不能设置文件输入的值。

相关问题:

  • Dynamically set value of a file input

  • How to set a value to a file input in HTML?