@extends('layouts.nifty') @section('content') User Management List of Roles Add New Role Add New Role Complete the form below to Add New User Role. @csrf Role Information Role @foreach($allpermissions->all() as $value) @if($category != $value->category) {{ $value->category }} CHECK ALL LIST CREATE EDIT DELETE IMPORT @endif @if($element != $value->element) {{ $value->description }} @foreach($allpermissions->where('element', $element)->all() as $value2) {{ Form::checkbox('permission[]', $value2->id, false, array('class' => $value2->id)) }} @endforeach @endif @endforeach @include('partials.footer') @endsection
Complete the form below to Add New User Role.