@extends('layouts.app') @section('title','Import Products') @section('content')

Import products

Bulk-create products from CSV; missing Arabic names can use the local translation dictionary.

Download template
@csrf
@isset($valid)
Validation preview{{ count($valid) }} valid ยท {{ count($importErrors) }} error(s)
@foreach($importErrors as $importError)
{{ $importError }}
@endforeach @if(count($valid))

Re-select the same file and confirm to import validated rows.

@csrf
@endif
@endisset @endsection