1👍
✅
Your mistake was the arguments to the render
function, it waits parameters like
render(request, 'name_of_template.html', context_dict)
Also, check your form
variable it must be inside of the context
dictionary, try adding it this way before pass it to render:
context['form'] = form
These things should work now.
Source:stackexchange.com