@extends('layouts.contentLayoutMaster') {{-- page title --}} @section('title', 'Criar Permissão') {{-- vendor styles --}} @section('vendor-styles') @endsection {{-- page styles --}} @section('page-styles') @endsection @section('content') Dados da Permissão @if ($message = Session::get('success')) × {{ $message }} @endif @if (count($errors) > 0) Ops! Ouve algum problema. @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @csrf @include('pages.permissions._partials.form') @endsection {{-- vendor scripts --}} @section('vendor-scripts') @endsection {{-- page scripts --}} @section('page-scripts') @endsection