@extends('admin.layout.app') @section('preload-section') @endsection @section('content')
@if (session()->has('success'))
@if(is_array(session()->get('success')))
    @foreach (session()->get('success') as $message)
  • {{ $message }}
  • @endforeach
@else {{ session()->get('success') }} @endif
@endif @if (count($errors) > 0) @if($errors->any()) @endif @endif
{{ __('keywords.Instructions')}}
  1. {{ __('keywords.Only CSV file are allowed')}}.
  2. {{ __('keywords.First row need to keep blank or use for column name only')}}.
  3. {{ __('keywords.All fields are must needed in csv file')}}.
  4. {{ __('keywords.fill the cat id(Which is available in Category list) od subcategory(which has a parent category) in category_id column of csv file')}}.
  5. {{ __('keywords.Insert tags in tags column separated by comma')}}.
  6. {{ __('keywords.Please upload the images on images/products path inside your main project directory')}}.
  7. {{ __('keywords.Download Sample File')}}
{{ __('keywords.Bulk Products Upload')}}
{{ csrf_field() }}


{{ __('keywords.Instructions')}}
  1. {{ __('keywords.Only CSV file are allowed')}}.
  2. {{ __('keywords.First row need to keep blank or use for column name only')}}.
  3. {{ __('keywords.All fields are must needed in csv file')}}.
  4. {{ __('keywords.fill the product id(Which is available in product list) in product_id column of csv file')}}.
  5. {{ __('keywords.Insert tags in tags column separated by comma')}}.
  6. {{ __('keywords.Download Sample File')}}
{{ csrf_field() }}
{{ __('keywords.Bulk Varient Upload')}}


@endsection