@include('form.text', ['name' => 'name'])
@if($currentUser->can('user-update'))
@include('form.text', ['name' => 'email'])
@endif @if($currentUser->can('user-update'))
@include('form.role-select', ['name' => 'role', 'options' => \BookStack\Role::all(), 'displayKey' => 'display_name'])
@endif @if($currentUser->can('user-update'))
@include('form.text', ['name' => 'external_auth_id'])
@endif
Cancel