@extends('templates.material.main') @section('jquery') {{-- Including this section to override it empty. Using jQuery from webpack build --}} @endsection @push('before-scripts') @endpush @section('nombre_modulo', __('Roles')) @section('breadcrumb') @endsection @section('content')

{{ __('Nuevo Rol') }}

@include('adminlte-templates::common.errors') @if(session('info'))
{{session('info')}}
@endif
{!! Form::open(['route' => 'roles.store', 'style'=>'width: 100%']) !!} @include('roles.partials.form')
{{__('Regresar')}} {{ Form::submit(__('Guardar'), ['class' => 'btn btn-outline-success float-right mr-1'])}} {!! Form::close() !!}
@endsection