@extends('backend/layouts/default') {{-- Page title --}} @section('title') Create a User :: @parent @stop {{-- Page content --}} @section('content')
{{ $errors->first('first_name', ':message') }}
{{ $errors->first('last_name', ':message') }}
{{ $errors->first('jobtitle', ':message') }}
{{ Form::select('location_id', $location_list, Input::old('location_id'), array('class'=>'select2', 'style'=>'width:250px')) }} {{ $errors->first('location_id', ':message') }}
{{ $errors->first('phone', ':message') }}
{{ $errors->first('email', ':message') }}
{{ $errors->first('password', ':message') }}
{{ $errors->first('password_confirm', ':message') }}
{{ $errors->first('activated', ':message') }}
Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned.
@foreach ($permissions as $area => $permissions)
{{ $area }} @foreach ($permissions as $permission)
@if ($permission['can_inherit'])
@endif
@endforeach
@endforeach
Cancel
@stop