@extends('appshell::layouts.private')
@section('title')
{{ __('Edit Invitation') }}
@stop
@section('content')
@include('appshell::user._subnav', ['active' => 'invitations'])
{!! Form::model($invitation, [
'route' => ['appshell.invitation.update', $invitation],
'method' => 'PUT',
'autocomplete' => 'off',
'class' => 'row'
]) !!}
@component(theme_widget('group'), ['accent' => 'secondary'])
@slot('title'){{ __('Invitee Details') }}@endslot
@include('appshell::invitation._form')
@slot('footer')
{{ __('Cancel') }}
@endslot
@endcomponent
@component(theme_widget('group'), ['accent' => 'secondary'])
@slot('title'){{ __('Roles') }}@endslot
@include('appshell::role._assignment', ['model' => $invitation])
@endcomponent
{!! Form::close() !!}
@stop