I was able to solve it by adding allow_blank as shown below
validates :something, allow_blank: true
Validate attribute only if it present (only if user fill in it)
Recommended Posts