{!! Form::label('title', 'Title', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::text('title', null, ["placeholder" => "Title", "class" => "form-control border-form", "required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'title'])
{!! Form::label('description', 'Description', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::textarea('description', null, ["placeholder" => "Description", "class" => "form-control border-form form-control"]) !!} @include('includes.form_fields_validation_message', ['name' => 'description'])
@if (isset($data['row']))
@if ($data['row']->file) {{ $data['row']->title }} @else

No File.

@endif
@endif
{!! Form::label('download_file', 'Download File', ['class' => 'col-sm-2 control-label']) !!}
{!! Form::file('download_file') !!} @include('includes.form_fields_validation_message', ['name' => 'download_file'])
@include('includes.form_fields_validation_message', ['name' => 'status'])