@extends('layouts/master') @section('title') {{ $user->username }} - Technic Solder @stop @section('content')
Edit User: {{ $user->email }} Last Updated By: @if ($userUpdatedBy) {{ $userUpdatedBy->username }} @else N/A @endif - {{ empty($user->updated_by_ip) ? "N/A" : $user->updated_by_ip }}
@if ($errors->all())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif @if (Session::has('success'))
{{ Session::get('success') }}
@endif {!! Form::open() !!} {!! Form::hidden("edit-user", 1) !!}

If you would like to change this accounts password you may include new passwords below. This is not required to edit an account

{!! Form::submit('Save User', ['class' => 'btn btn-success']) !!} {!! Html::link('user/list/', 'Go Back', ['class' => 'btn btn-primary']) !!}
@if (Auth::user()->permission->solder_full || Auth::user()->permission->solder_users)

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.

@forelse ($allModpacks as $modpack) @empty

No modpacks exist.

@endforelse
@endif
{!! Form::close() !!}
@endsection