I need my h1 to show below my for my checkbox. It is inside of the div. Should I maybe put it outside of the .
The missing is below the Organization Fields header. It is suppose to display below the checkbox input but it is not showing at all. What may cause it to disappear
HTML
<label name="Organization">Show Organization Data</label>
<input type="checkbox" :v-model="showOrganizationFields" :true-value="true" :false-value="false">
<div v-if="showOrganizationFields">
<h1 class="mb-7 mt-5 ml-6 font-bold text-2xl"> Organization Fields</h1>
<div v-for="field in requiredOrganizationFields" class="p-8 -mr-6 -mb-6 flex flex-wrap" style="width:150px">
<label :for="field" type="select" name="field">{{field}}</label>
<select :id="field" :name="field" v-model="mapping[field]" required>
<option value="">Please Select</option>
<option v-for="columnName in columnNames" :name="columnName" :value="columnName" value="">{{columnName}}</option>
</select>
</div>
</div>
