Humanize validation errors returned on registration
This commit is contained in:
parent
3fa9b39150
commit
822559afd8
3 changed files with 22 additions and 6 deletions
|
@ -49,8 +49,10 @@
|
|||
<div class='terms-of-service' v-html="termsofservice">
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="error" class='form-group'>
|
||||
<div class='alert error'>{{error}}</div>
|
||||
<div v-if="errors.length" class='form-group'>
|
||||
<div class='alert error'>
|
||||
<span v-for="error in errors">{{error}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue