@section('title') {{ trans('general.import') }} @parent @stop
{{-- Livewire requires a 'master'
, above --}}
{{-- alert --}} @if($message != '')
@if($message_type == 'success') @endif {{-- title --}} {{ $message }}
@endif @if($import_errors)
Warning Some Errors occurred while importing {{-- TODO: hardcoded string --}}
@foreach($import_errors as $field => $error_list) @endforeach
Item Errors
{{ $processDetails->file_path ?? "Unknown File" }} {{ $field }}: {{ implode(", ",$error_list) }}
@endif
@if($progress != -1)
{{-- so someof these values are in importer.vue! --}}
{{ $progress_message }}
@endif
@if (!config('app.lock_passwords')) {{ trans('button.select_file') }} @endif
@foreach($files as $currentFile) @if( $currentFile && $processDetails && ($currentFile->id == $processDetails->id)) @livewire('importer-file', ['activeFile' => $currentFile]) @endif @endforeach
{{ trans('general.file_name') }} {{ trans('general.created_at') }} {{ trans('general.filesize') }} {{ trans('general.actions') }}
{{ $currentFile->file_path }} {{ $currentFile->created_at }} {{ $currentFile->filesize }}

{{ trans('general.importing') }}

{!! trans('general.importing_help') !!}

@push('js') @endpush