@extends('layouts.template.app') @section('title', 'Roles') @section('title-page', 'Crear rol') @section('suit', 'Roles') @section('item-suit', 'Crear rol') @section('href', route('roles.index')) @section('content') @if (session('message'))
{{ session('message') }}
@endif
{!! Form::open(['route' => 'roles.store']) !!} @include('roles.partials.form') {!! Form::submit('Crear rol', ['class' => 'btn btn-primary btn-sm mt-2']) !!} {!! Form::close() !!}
@endsection