Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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>