Removed register select

This commit is contained in:
Julian Prieber 2022-11-19 11:59:51 +01:00
parent c2b6dd83de
commit f6a137e8bd
1 changed files with 0 additions and 12 deletions

View File

@ -23,18 +23,6 @@
<h3>Contact</h3> <h3>Contact</h3>
<textarea class="form-control ckeditor" name="contact" rows="3">{{ $page->contact }}</textarea> <textarea class="form-control ckeditor" name="contact" rows="3">{{ $page->contact }}</textarea>
</div><br> </div><br>
<div class="form-group col-lg-8">
<h3 for="exampleFormControlSelect1">Allow registration</h3>
<select class="form-control" name="register">
@if($page->register == 'true')
<option>true</option>
<option>false</option>
@else
<option>false</option>
<option>true</option>
@endif
</select>
</div>
@endforeach @endforeach
<button type="submit" class="mt-3 ml-3 btn btn-info">Submit</button> <button type="submit" class="mt-3 ml-3 btn btn-info">Submit</button>
</form> </form>