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

Import Schools

Download the template, fill your data, and upload to preview before inserting.

Download Excel Template (CSV) Back
@include('partials.alerts')
@csrf
Use the template columns exactly. Max 2MB. CSV (Excel: Save As "CSV UTF-8").
@if(!empty($errorsRows))
Some rows have issues:
@endif @if(!empty($preview))
Preview
@csrf @foreach($preview as $idx => $row) @endforeach
@foreach($preview as $row) @endforeach
Name Contact Email
{{ $row['name'] }} {{ $row['contact_number'] }} {{ $row['contact_email'] }}
@endif @endsection