I am using bootstrap tags input https://bootstrap-tagsinput.github.io/bootstrap-tagsinput/examples/ and implemented as well successfully. I just want to made it required field so that each user submit form with the technology tags.
<div class="col-lg-6">
<label class="">Primary Skills (Note: Add comma separated) <span class="text-danger">*</span></label>
<input class="form-control" type="text" id="primaryskill" name="seeker_primary_skills" required>
<b class="tooltip tooltip-top-right">This is a required</b>
</div>
Here is the screenshot for this.

check return on form submit
Javascript/Jquery Code