15 lines
438 B
PHP
15 lines
438 B
PHP
|
@extends('layouts.admin.admin')
|
||
|
|
||
|
@section('title', 'Create a Permission')
|
||
|
|
||
|
@section('content')
|
||
|
<section>
|
||
|
<div class="section-body">
|
||
|
<form class="form form-validate floating-label" action="{{route('permission.store')}}" method="POST" enctype="multipart/form-data" novalidate>
|
||
|
@include('permission.form',['header' => 'Create a permission'])
|
||
|
</form>
|
||
|
</div>
|
||
|
</section>
|
||
|
@endsection
|
||
|
|