@extends('backend.layouts.master') @section('title', 'Role List') @section('styles')
@endsection @section('scripts') @endsection @section('content')
Backend
User
Role
List
Roles
Create Role
{{ csrf_field() }}
Name
{{ $errors->first('name') }}
Slug
{{ $errors->first('slug') }}
Create Role
Reset Form
Role Table
@foreach($roles as $role) @endforeach
ID
Name
Slug
User Count
Created
Actions
{{ $role->id }}
{{ $role->name }}
{{ $role->slug }}
{{ $role->users->count() }}
{{ $role->created_at->diffForHumans() }}
{!! csrf_field() !!} {!! method_field('delete') !!}
Delete Confirmation
×
Please confirm you would like to delete the selected resourse.
@endsection