@extends('adminlte::page') @section('title','Role & Permission') @section('content_header')

All Role & Permissions

@stop @section('content')
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session()->has('success'))
{!! session()->get('success') !!}
@endif
@foreach ($roles as $role) @endforeach
# Title Action
{{ $loop->iteration }} {{ $role->name }}
@section('js') {{-- hide notifcation --}} @endsection @stop