@extends('appshell::layouts.private')
@section('title')
{{ __('Editing') }} {{ $user->name }}
@stop
@section('content')
{!! Form::model($user, [
'route' => ['appshell.user.update', $user],
'method' => 'PUT',
'autocomplete' => 'off',
'id' => 'user-form',
'class' => 'row'
]) !!}
@component(theme_widget('group'), ['accent' => 'secondary'])
@slot('title'){{ __('User Account Data') }}@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