When uploading a usr csv in the format given, I instantly receive a 500 error. I upload the file, click "this CSV has a header row" and straight to 500. There's nothing in the logs that point to an issue.
app/storage/logs and your webserver's logs.Stack trace from /app/storage/logs
[2016-07-08 09:32:59] production.ERROR: ErrorException: Undefined offset: 7 in /var/www/snipeit/app/controllers/admin/UsersController.php:844
Stack trace:
ject(Illuminate\Routing\Route), 'postImport')
tp\Request), 'Controllers\Adm...', 'postImport')
"[2016-07-08 09:32:59] production.ERROR: ErrorException: Undefined offset: 7 in /var/www/snipeit/app/controllers/admin/UsersController.php:844"
It looks like the importer is expecting eight columns, but not finding them.
'first_name' => $row[0],
'last_name' => $row[1],
'username' => $row[2],
'email' => $row[3],
'password' => $pass, // Generated
'activated' => $activated,
'location_id' => $user_location_id, // $row[4]
'phone' => $row[5],
'jobtitle' => $row[6],
'employee_num' => $row[7],
Confirmed that there's 7 columns in my CSV: (data scrubbed for security purposes)

It looks like the 'phone' column is missing. The index is 0 based, so it should actually be eight columns (I mislead earlier).
First, Last, User, Email, Location, Phone, Job Title, Employee Num.
We both learned something today...BOOM! Worked great, thanks for the quick response!!
Most helpful comment
"[2016-07-08 09:32:59] production.ERROR: ErrorException: Undefined offset: 7 in /var/www/snipeit/app/controllers/admin/UsersController.php:844"
It looks like the importer is expecting eight columns, but not finding them.