Update predefined-form.blade.php

This commit is contained in:
Julian Prieber 2022-11-09 19:45:28 +01:00
parent d8130cd914
commit a5a8bbe821

View File

@ -3,8 +3,9 @@
<select name='button' class='form-control'> <select name='button' class='form-control'>
@foreach ($buttons as $b) @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> <option class='button button-{{$b["name"]}}' value='{{$b["name"]}}' {{ $b["selected"] == true ? "selected" : ""}}>{{$b["title"]}}</option>
@endif
@endforeach @endforeach
</select> </select>