@extends('admin.layouts.master') @section('title', 'Role list') @section('content')

{{ __('List of Role') }}

{{ __('List of Role') }}

@foreach ($roles as $id => $role) @endforeach
{{ __('#') }} {{ __('Role Name') }} {{ __('Action') }}
{{ ++$id }} {{ $role->name }} {{ __('Edit') }}
@csrf
@endsection