@extends('layouts.app') @section('title', 'Import Contacts') @section('breadcrumb')Contacts Import@endsection @section('content')

Import Contacts from CSV

Upload a CSV file to bulk-import contacts. Duplicates (same email) will be skipped.

@csrf
@error('csv_file')

{{ $message }}

@enderror

Required CSV columns (header row)

@foreach(['first_name','last_name','email','phone','mobile','company','type','address','suburb','state','postcode','notes'] as $col)
{{ $col }}
@endforeach

type values: client, supplier, trade, installer, other

Download sample CSV

Download Sample
Cancel
@endsection