Last active
October 8, 2019 07:23
-
-
Save CryDeTaan/2b2eee4e9aa34c83efef29e0e57f20d2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div class="form-group row"> | |
<label for="inputEmail3" class="col-sm-2 col-form-label">Email</label> | |
<div class="col-sm-10"> | |
<input type="text" class="form-control" id="inputEmail3" placeholder="Email" v-model="form.email" required> | |
<span class="invalid-feedback d-block" role="alert" v-if="form.errors.has('email')" v-text="form.errors.get('email')"></span> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment