@extends('layouts.app') @section('content-header')

{{__('adminPrivilege.create_role')}}

@endsection @section('content')

{{__('adminPrivilege.create_new_role')}}

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('roles.form', ['role' => null,])
@endsection