Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions resources/assets/js/components/InputTags.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<input-tag :tags.sync="tagsArray"></input-tag>
<input-tag :tags.sync="tagsArray" :addTagOnBlur="addTagOnBlur"></input-tag>
<input type="hidden" name="tags" :value="tagsArray">
</div>
</template>
Expand All @@ -13,7 +13,8 @@
props: ['value'],
data() {
return {
tagsArray: this.value ? this.value.split(',') : []
tagsArray: this.value ? this.value.split(',') : [],
addTagOnBlur: true
}
}
}
Expand Down
8 changes: 8 additions & 0 deletions resources/views/profile.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@
@endcomponent
<br/>
<br/>

<p>
<input type="checkbox" id="privacy" name="feature"
value="privacy" />
<label for="privacy">I have read and agree with the Privacy Police terms described on this <a href="https://s3-eu-west-1.amazonaws.com/codeweek-s3/docs/CodeWeek+Privacy+Statement+Contact+Points.pdf">document</a>.</label>
</p>


<div class="form-group">
<button type="submit" class="btn btn-default">Update</button>
</div>
Expand Down