Hello,
This blue box should contain a warning message about extra fields that are required.
You need to make a change in your itemform.php file located in your template overrides in order for the message to appear correctly.
In itemform.php locate this html element
<ul id="k2ExtraFieldsValidationResults"></ul>
and replace it with the following code:
<!-- Required extra field warning -->
<div id="k2ExtraFieldsValidationResults">
<h3><?php echo JText::_('K2_THE_FOLLOWING_FIELDS_ARE_REQUIRED'); ?></h3>
<ul id="k2ExtraFieldsMissing">
<li><?php echo JText::_('K2_LOADING'); ?></li>
</ul>
</div>