@extends('admin.master') @section('title', __('Bulk upload products')) @section('content')
{{ __('Cancel') }}
@if($errors->any()) @foreach ($errors->all() as $error)
{{ $error }}
@endforeach @endif @if(session('settings_message'))
{{ session('settings_message') }}
@endif
{{ __('CSV data file') }} : {{ __('This file contains all details about your products in csv form, including the columns names (id, name, description, ... etc.') }}
{{ __('Covers') }} : {{ __("This input is required, it contains the products covers.") }}
{{ __('Main files') }} : {{ __('This input is optional, it contains the main files (zip or any archive) for the uploaded items.') }}
{{ __('Important') }} : {{ __('Make sure that the files names for the main files and the covers are the same as in the csv data file.') }}
@foreach($settings->columns as $column) @endforeach
{{ __(mb_ucfirst(str_replace('_', ' ', $column))) }}
@endsection