i have an ActiveForm, and i want to add a field where the user can upload their photos. the problem is that i don\'t have an attribute for the image in the users table and e
Create a read only attribute for your model like public $imageand proceed like
public $image
= $form->field($model, 'image')->fileInput() ?>