@if (isset($add_form_download))
{{ Form::open([
'class' => 'form-horizontal',
'files' => true,
'route' => 'form-download-update',
'method' => 'POST',
'enctype' => 'multipart/form-data',
]) }}
@else
@if (userPermission('form-download-store'))
{{ Form::open([
'class' => 'form-horizontal',
'files' => true,
'route' => 'form-download-store',
'method' => 'POST',
'enctype' => 'multipart/form-data',
]) }}
@endif
@endif
@if (isset($add_form_download))
@lang('front_settings.edit_form_download')
@else
@lang('front_settings.form_download')
@endif
@if ($errors->has('short_description'))
{{ $errors->first('short_description') }}
@endif
{{ Form::close() }}