@extends('layouts/edit-form', [ 'createText' => trans('admin/groups/titles.create') , 'updateText' => trans('admin/groups/titles.update'), 'item' => $group, 'formAction' => ($group !== null && $group->id !== null) ? route('groups.update', ['group' => $group->id]) : route('groups.store'), ]) @section('content') @parent @stop @section('inputFields')
{!! $errors->first('name', '') !!}
{!! $errors->first('notes', '') !!}
@foreach ($permissions as $area => $area_permission) @if (count($area_permission) == 1) @else @foreach ($area_permission as $index => $this_permission) @if ($this_permission['display']) @endif @endforeach @endif @endforeach
{{ trans('admin/groups/titles.permission')}} {{ trans('admin/groups/titles.grant')}} {{ trans('admin/groups/titles.deny')}}
@unless (empty($localPermission['label']))

{{ $area . ': ' . $localPermission['label'] }}

@else

{{ $area }}

@endunless

{{ $area }}

{{ $this_permission['label'] }}
@stop @section('moar_scripts') @stop