Update config.blade.php

This commit is contained in:
Julian Prieber 2022-11-17 15:43:52 +01:00
parent 74f25b6068
commit 1b2bcd1020
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ function text($key){
<h5 style="margin-top:50px">'; foreach($configNames as $obj){if($obj->value == $key){echo $obj->title;}}; echo '</h5>
<p class="text-muted">'; foreach($configNames as $obj){if($obj->value == $key){echo $obj->description;}}; echo '</p>
<div class="input-group">
<input type="text" class="form-control" name="value" value="'.$configValue.'" required>'; echo '
<input type="text" style="border-radius:.25rem;max-width:600px" class="form-control" name="value" value="'.$configValue.'" required>'; echo '
<input type="hidden" name="_token" value="'.csrf_token().'">
<button style="position:relative;bottom:17px;" type="submit" class="mt-3 ml-3 btn btn-info">Apply</button>
</div></div>