@extends('layouts.admin.admin') @section('title', 'Store Bulk Import') @section('content')
@include('partials.header') @include('layouts.admin.sidebar')
@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(session('success')) @endif @include('partials.breadcrumbs')
Create Store - Bulk Upload
@csrf

You can add stores in bulk by uploading the details in the csv format given below:

Click here to download the bulk upload csv format template
@if ($errors->has('store_csv')) {{ $errors->first('store_csv') }} @endif
@stop