@extends('layouts/master') @section('title') Create User - Technic Solder @stop @section('content')
Create User
@if ($errors->all())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif {!! Form::open() !!} {!! Form::hidden("edit-user", 1) !!}
{!! Form::submit('Create User', ['class' => 'btn btn-success']) !!}

Permissions

Please select the level of access this user will be given. The "Solderwide" permission is required to access a specific section. Mod and Modpack user permissions are displayed in there corresponding sections.

General Modpack Access permissions are required before granting access to a specific modpack. Users without these permission will not be able to perform stated actions even if the specfic modpack is selected.

@foreach ($allModpacks as $modpack) @endforeach
{!! Form::close() !!}
@endsection