Skip to content

Commit

Permalink
Default on company_show fix (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jade-GG authored Feb 18, 2025
1 parent 9cbab10 commit ae3ff15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/components/address-form.blade.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
@props(['type' => 'shipping', 'address' => 'variables', 'countryKey' => 'country_code'])

<div class="grid gap-4 md:gap-5 md:grid-cols-4">
@if (Rapidez::config('customer/address/company_show', 0) || Rapidez::config('customer/address/taxvat_show', 0))
@if (Rapidez::config('customer/address/company_show', 0))
@if (Rapidez::config('customer/address/company_show', 'opt') || Rapidez::config('customer/address/taxvat_show', 0))
@if (Rapidez::config('customer/address/company_show', 'opt'))
<label class="sm:col-span-2">
<x-rapidez::label>@lang('Company')</x-rapidez::label>
<x-rapidez::input
Expand Down

0 comments on commit ae3ff15

Please sign in to comment.