Last active
April 24, 2018 13:32
-
-
Save aldarund/495aa0cadf32cceb17c07e94c49f955a to your computer and use it in GitHub Desktop.
This file contains 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
<v-layout row wrap> | |
<label>What is your e-mail address?</label> | |
</v-layout> | |
<v-layout row> | |
<validate-text-field :value.sync="landlordInfo.email" name='email' | |
placeholder='[email protected]' | |
validate="required|email" | |
></validate-text-field> | |
</v-layout> | |
<v-layout row wrap> | |
<label>What is your home or business address?</label> | |
</v-layout> | |
<v-layout row> | |
<validate-text-field :value.sync="landlordInfo.street1" name='street1' | |
placeholder='141 W Jackson' | |
validate="required|min_digit:1|min_letter:1|sm_street|max:100"></validate-text-field> | |
</v-layout> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment