@extends('layouts.dash')
{!! $with_navbar=false !!}
@section('title') Permissions @stop
@section('title_card',"Nouvelle Permission")
@section('content')
@if ($errors)
@foreach ($errors->all() as $error)
{!! $error !!}
@endforeach
@endif
{{ html()->form('POST', url('permissions'))->open() }}
@include("acces.permissions.content")
{{ html()->closeModelForm() }}
@endsection