@extends('appshell::layouts.private')
@section('title')
{{ __('Editing Role') }} {{ $role->name }}
@stop
@section('content')
{!! Form::model($role, ['route' => ['appshell.role.update', $role], 'method' => 'PUT']) !!}
@component(theme_widget('group'), ['accent' => 'secondary'])
@slot('title'){{ __('Role Details') }}@endslot
@include('appshell::role._form')
@slot('footer')
{{ __('Cancel') }}
@endslot
@endcomponent
{!! Form::close() !!}
@stop