company.blade.php 877 B

1234567891011121314151617181920212223242526272829
  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. ### Please change your password when logging in for the first time
  8. Thanks,<br>
  9. [Go to login]({{config('app.url').'/user/login'}})<br>
  10. @else
  11. ### Your company application was not approved.
  12. ### Reason for rejection: {{$rejectReason}}
  13. ### Please resubmit company information
  14. Thanks,<br>
  15. [Go to register]({{config('app.url').'/user/register'}})<br>
  16. @endif
  17. From {{ config('app.name') }}
  18. </x-mail::message>