@extends('super_admins.layouts.master') @section('title') Add Role @endsection @section('content') @if ($errors->any()) @endif

Add Role

Add Role

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if(isset($tenants))
@if ($errors->has('tenant_id')) {{ $errors->first('tenant_id') }} @endif
@endif

@foreach($permissions->chunk(3) as $chunk)
@foreach($chunk as $permission)
{{ $permission->name }}
@endforeach
@endforeach

@endsection @section('scripts') @endsection