Skip to content

Instantly share code, notes, and snippets.

@aldarund
Last active April 24, 2018 13:32
Show Gist options
  • Save aldarund/495aa0cadf32cceb17c07e94c49f955a to your computer and use it in GitHub Desktop.
Save aldarund/495aa0cadf32cceb17c07e94c49f955a to your computer and use it in GitHub Desktop.
<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='null@example.com'
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