@include('form/text', ['name' => 'name'])
    
    @include('form/text', ['name' => 'email'])
@if(isset($model))
    
        
            Only fill the below if you would like 
to change your password:
        
    
@endif
@if($currentUser->can('user-update'))
    
        
        @include('form.role-select', ['name' => 'role', 'options' => \Oxbow\Role::all(), 'displayKey' => 'display_name'])
    
@endif
    
    @include('form/password', ['name' => 'password'])
    
    @include('form/password', ['name' => 'password-confirm'])