@extends('layouts.app', ['title' => 'Roles']) @section('content') @include('users.partials.header', [ 'title' => 'Agregar rol', 'breadcrumb' => [ [ 'icon' => 'chevron-right', 'title' => 'Agregar rol', 'url' => '#' ],[ 'icon' => 'list', 'title' => 'Roles', 'url' => route('roles.index') ] ] ])

Administración de roles

@csrf
Información de rol
@if ($errors->has('display_name')) {{ $errors->first('display_name') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
@include('layouts.footers.auth')
@endsection