@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('global.role.title_singular') }}
@csrf
@if($errors->has('title')) {{ $errors->first('title') }} @endif

{{ trans('global.role.fields.title_helper') }}

@if($errors->has('permissions')) {{ $errors->first('permissions') }} @endif

{{ trans('global.role.fields.permissions_helper') }}

@endsection