[Fixed]-Sign up django with cbv and AbstractUser model image error

1👍

You have forgotten to set enctype in your form. It should be:

<form class="form-horizontal m-t-40" action="" method="post" enctype="multipart/form-data">

See the Django docs on file uploads for more info.

Leave a comment