@extends('layouts.app') @push('pageTitle') {{ __('labels.roles') }} @endpush @section('content') @include('components.common.page-header', [ 'pageTitle' => isset($role) && isset($readonly) && $readonly ? __('labels.view_role') : (isset($role) ? __('labels.edit_role') : __('labels.create_new_role')), 'actionButton' => [ 'url' => route('roles.index'), 'text' => __('labels.back_to_roles'), ], ]) @include('components.common.flush-message') @include('components.common.validation-errors')
@endsection @section('js') @endsection