Skip to content

Commit

Permalink
Update create_edit_shop.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
ScuffedNewt authored Jan 30, 2025
1 parent 62d8aea commit 8d5c6e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/admin/shops/create_edit_shop.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
<div class="form-group coupon-row {{ $shop->use_coupons ? '' : 'hide' }}">
{!! Form::label('allowed_coupons', 'Allowed Coupon(s)', ['class' => 'form-check-label']) !!}
<p>Leave blank to allow ALL coupons.</p>
{!! Form::select('allowed_coupons[]', $coupons, json_decode($shop->allowed_coupons, 1), ['multiple', 'class' => 'form-check-label', 'placeholder' => 'Select Coupons', 'id' => 'allowed_coupons']) !!}
{!! Form::select('allowed_coupons[]', $coupons, $shop->allowed_coupons, ['multiple', 'class' => 'form-check-label', 'placeholder' => 'Select Coupons', 'id' => 'allowed_coupons']) !!}
</div>

<div class="form-group">
Expand Down

0 comments on commit 8d5c6e5

Please sign in to comment.