@extends('backend/layouts/default') {{-- Page title --}} @section('title') Create a User :: @parent @stop {{-- Page content --}} @section('content')

@if (Session::get('message'))

You have an error in your CSV file:
{{ Session::get('message') }}

@endif

Upload a CSV file with one or more users. Passwords will be auto-generated. The CSV should have the first fields as: firstName,lastName,email. Any additional fields to the right of those fields will be ignored.

{{ Form::checkbox('has_headers', '1', Input::old('has_headers')) }} This CSV has a header row
{{ Form::checkbox('email_user', '1', Input::old('email_user')) }} Email these users their credentials?
{{ Form::checkbox('activate', '1', Input::old('activate')) }} Activate user?
@lang('button.cancel')
@stop