{!! trans('messages.list.import.instruction', [
'csv_link' => url('files/csv_import_example.csv'),
'size' => \Acelle\Library\Tool::maxFileUploadInBytes()
]) !!}
@foreach ($importNotifications as $notification)
@include('helpers.form_control', ['required' => true, 'type' => 'file', 'label' => trans('messages.upload_file'), 'name' => 'file', 'value' => $list->name])
@if (\Acelle\Model\Setting::get('import_subscribers_commitment'))
@include('helpers.form_control', [
'type' => 'checkbox2',
'class' => 'policy_commitment mb-10 required',
'name' => 'policy_commitment',
'value' => 'no',
'required' => true,
'label' => \Acelle\Model\Setting::get('import_subscribers_commitment'),
'options' => ['no','yes'],
'rules' => []
])
@endif