1234567891011121314151617181920212223242526272829 |
- <x-mail::message>
- # Company Name: {{ $company->name }}
- ## Status: {{$company->review_status}}
- ## Note:
- @if($company->review_status->value === "approved")
- ### 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>
- ### Please change your password when logging in for the first time
- Thanks,<br>
- [Go to login]({{config('app.url').'/user/login'}})<br>
- @else
- ### Your company application was not approved.
- ### Reason for rejection: {{$rejectReason}}
- ### Please resubmit company information
- Thanks,<br>
- [Go to register]({{config('app.url').'/user/register'}})<br>
- @endif
- From {{ config('app.name') }}
- </x-mail::message>
|