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