@extends('appshell::layouts.private') @section('title') {{ __('Create new role') }} @stop @section('content') {!! Form::open(['route' => 'appshell.role.store']) !!} @component(theme_widget('group'), ['accent' => 'success']) @slot('title'){{ __('New Role Details') }}@endslot @include('appshell::role._form') @slot('footer') {{ __('Cancel') }} @endslot @endcomponent {!! Form::close() !!} @endsection