{!! Form::open(['route' => ['admin::DataExportCenter::update', $export->id], 'class' => 'form-horizontal', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label(trans('DataExportCenter::admin/edit.labels.custom_name').':', null, ['class' => 'control-label col-sm-2'] ) !!}
{!! Form::text('custom_name', $export->custom_name, ['class' => 'form-control']) !!}
{!! Form::label(trans('DataExportCenter::admin/edit.labels.submodules').':', null, ['class' => 'control-label col-sm-4'] ) !!}
{!! Form::select('submodule', $submodulesList, $export->namespace, ['class' => 'form-control']) !!}
{!! Form::label(trans('DataExportCenter::admin/edit.labels.stores').':', null, ['class' => 'control-label col-sm-4'] ) !!}
{!! Form::select('store_id', $storeList, $export->store_id, ['class' => 'store_id form-control col-sm-10']) !!}
{!! Form::label(trans('DataExportCenter::admin/edit.labels.languages').':', null, ['class' => 'control-label col-sm-4'] ) !!}
{!! Form::select('language_id', $languagesList, $export->language_id, ['class' => 'form-control col-sm-10']) !!}
{!! Form::label(trans('DataExportCenter::admin/edit.labels.currencies').':', null, ['class' => 'control-label col-sm-4'] ) !!}
{!! Form::select('currency_id', $currenciesList, $export->currency_id, ['class' => 'form-control col-sm-10']) !!}
{!! Form::label('type', trans('DataExportCenter::admin/edit.labels.type.main').':', ['class' => 'control-label col-sm-4'] ) !!}
{!! Form::select('type', $cronList, $export->type, ['class' => 'form-control col-sm-10']) !!}
{!! Form::label(trans('DataExportCenter::admin/edit.labels.cron').':', null, ['class' => 'control-label col-sm-4'] ) !!}
{!! Form::text('cron', $export->cron, ['class' => 'form-control timepicker']) !!}
{!! Form::label(trans('DataExportCenter::admin/edit.labels.manufacturers').':', null, ['class' => 'control-label col-sm-4'] ) !!}
{!! Form::label(trans('DataExportCenter::admin/edit.labels.storages').':', null, ['class' => 'control-label col-sm-4'] ) !!}
{!! Form::checkbox('quantity_check', '1', $export->quantity_check == '1', ['id' => 'quantity_check' ]) !!} {!! Form::label('quantity_check', trans('DataExportCenter::admin/edit.labels.quantity_check')) !!}
{{ trans('global.back') }}
{!! Form::submit(trans('global.save'), ['class' => 'btn btn-success']) !!}
{!! Form::close() !!} @push('footScripts') @endpush