@extends('admin.layouts.app') @section('title',get_setting('site_name').' Employee Import') @section('content')
Employee Bulk Import
@if(session('message'))
{{ session('message') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(session('staff_import_created_report')) Download Created Credentials (CSV) @endif @if(session('staff_import_error_report')) Download Error Report (CSV) @endif
Template Download
Download Template
Required columns: name, email, dob, joining_date.
Branch/Warehouse, Weekend, Attendance Shift, Leave Group will use the provided name/id; if empty, it will use the first available setup.
@endsection