@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Admin Role')}} @endsection @section('content')
@include('backend/partials/message')

{{__('All Admin Role')}}

@foreach($all_role as $data) @endforeach
{{__('ID')}} {{__('Role')}} {{__('Action')}}
{{$data->id}} {{$data->name}} {{__('Add/Edit Permission')}}

{{__('Add New Admin Role')}}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
@csrf
@endsection @section('script') @endsection