You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

company-info.blade.php 345B

12345678
  1. <div class="text-xs text-right">
  2. <h2 class="text-base font-semibold">{{ $company_name }}</h2>
  3. @if($company_address && $company_city && $company_state && $company_zip)
  4. <p>{{ $company_address }}</p>
  5. <p>{{ $company_city }}, {{ $company_state }} {{ $company_zip }}</p>
  6. <p>{{ $company_country }}</p>
  7. @endif
  8. </div>