'bytes' object has no attribute '_committed'
You should enumerate over the file handlers, so obtain the handlers with .getlist(…)
[Django-doc]:
images = request.FILES.getlist('images')
for image in images:
Images.objects.create(project=project, image=image)