in VM backend we have "readonly" option for user fields
but this is not affect on anything in frontend
			
			
			
				normal form etc? 
I noticed this other day but only on using Frontend VM admin  ( readonly was not passed)
			
			
			
				User field, marked in backend as readonly should be also readonly in frontend on user edit page, i think
			
			
			
				so do I but its not...  
Have discussed with Max before and I think in a forth coming release the readonly will be passed thru also to the fields
In the meantime you could change this in the userfields model
            $readonly = '';
            if(!$admin){
               if($_fld->readonly ){
                  $readonly = ' readonly="readonly" ';
               }
            }
if is detected as an admin view then the readonly isn't passed
			
			
			
				yes, this is the problem: user fields not pass readonly state
(https://image.prntscr.com/image/egGeWri9R1WNfsVUyDX-QQ.png)
Also, if i modify userfields model - on next update it will be lost
			
			
			
				QuoteHave discussed with Max before and I think in a forth coming release the readonly will be passed thru also to the fields
In the meantime you could change this in the userfields model
Jörgen @ Kreativ Fotografi