@extends('appshell::layouts.private')
@section('title')
{{ __('Invite new user') }}
@stop
@section('content')
{!! Form::model($invitation, ['route' => 'appshell.invitation.store', 'autocomplete' => 'off', 'class' => 'row']) !!}
@component(theme_widget('group'), ['accent' => 'success'])
@slot('title'){{ __('Invitee Details') }}@endslot
@include('appshell::invitation._form')
@slot('footer')
{{ __('Cancel') }}
@endslot
@endcomponent
@component(theme_widget('group'), ['accent' => 'success'])
@slot('title'){{ __('Roles') }}@endslot
@include('appshell::role._assignment', ['model' => $invitation])
@endcomponent
{!! Form::close() !!}
@stop