@extends('layouts.view') @section('title',trans('role.roleManagementCreate')) @section('content')

{{trans('role.roleManagementCreate')}}

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Name:
@foreach($permission->chunk(4) as $chunk)
{{ \Illuminate\Support\Str::title(\Illuminate\Support\Str::before($chunk->first()->name, '-')) }} Permission:
@foreach($chunk as $value)
@endforeach
@endforeach
@endsection