Modal form Validation errors persist when reopened
问题 About the problem I am using Laravel 5.6.7, Vue.js. I have modal div which being opened and closed on button click. I type something. Validation fires. I close the modal div. Then clicking button to open it. I see that the validation messages still there. Component Template <template> <div> <form role="form"> <input name="LastName" type="text" ref="LastName" v-validate data-vv-rules="required" v-model="createForm.LastName"> <p v-if="errors.has('LastName')">{{ errors.first('LastName') }}</p>