Update predefined-form.blade.php

This commit is contained in:
Julian Prieber 2022-11-09 19:45:28 +01:00
parent d8130cd914
commit a5a8bbe821
1 changed files with 2 additions and 1 deletions

View File

@ -3,8 +3,9 @@
<select name='button' class='form-control'>
@foreach ($buttons as $b)
@if(!in_array($b["name"], ["custom_website", "custom"]))
<option class='button button-{{$b["name"]}}' value='{{$b["name"]}}' {{ $b["selected"] == true ? "selected" : ""}}>{{$b["title"]}}</option>
@endif
@endforeach
</select>