company.blade.php 625 B

123456789101112131415161718192021222324
  1. <x-mail::message>
  2. # Company Name: {{ $company->name }}
  3. ## Status: {{$company->review_status}}
  4. ## Note:
  5. @if($company->review_status->value === "approved")
  6. ### Congratulations! The company you applied for has passed the background review.This audit is valid until :{{$company->exp_date}}<br>Initialize the account information as follows:<br><br>name: {{$user->name}} <br>username: {{$user->username}} <br>password: admin@#123<br>
  7. @else
  8. Your company application was not approved.
  9. @endif
  10. Thanks,<br>
  11. [Go to login]({{config('app.url')}})<br>
  12. From {{ config('app.name') }}
  13. </x-mail::message>