Merge pull request #447 from 1day2die/development
Fix Server slot product editing bug
This commit is contained in:
commit
53b0c4ef89
1 changed files with 2 additions and 1 deletions
|
@ -48,7 +48,8 @@
|
|||
<label for="type">{{ __('Type') }}</label>
|
||||
<select required name="type" id="type"
|
||||
class="custom-select @error('name') is-invalid @enderror">
|
||||
<option selected value="Credits">{{ CREDITS_DISPLAY_NAME }}</option>
|
||||
<option @if ($shopProduct->type == 'credits') selected @endif value="Credits">{{ CREDITS_DISPLAY_NAME }}</option>
|
||||
<option @if ($shopProduct->type == 'Server slots') selected @endif value="Server slots">{{__("Server Slots")}}</option>
|
||||
</select>
|
||||
@error('name')
|
||||
<div class="text-danger">
|
||||
|
|
Loading…
Add table
Reference in a new issue