@component('mail::layout') {{-- Header --}} @slot('header') @include('email.admin.includes.header') @endslot {{-- Body --}} {{-- Greeting --}} @if (! empty($greeting)) # {{ $greeting }} @else @if ($level === 'error') # @lang('Whoops!') @else @endif @endif

Dear {{ $user->fullname }},

Thank you for expressing interest in becoming a member of {{ $firm->name }}. We have reviewed your request, and we are pleased to welcome you to our community.

To proceed with your membership, please note that a subscription fee is required. Kindly login to our system using your credentials and proceed with the payment to activate your membership.

Once your payment is confirmed, you will have full access to the resources and benefits available to our firm members. If you encounter any issues or have questions, please do not hesitate to reach out to our support team at {{getSupportEmail()}}.

We look forward to your participation in {{ $firm->name }} and the value you will bring to our community.

Best regards,
{{ $firm->adminname }}
{{ $firm->name }}
{{ $firm->adminemail }}

{{-- Subcopy --}} @isset($subcopy) @slot('subcopy') @component('mail::subcopy') {{ $subcopy }} @endcomponent @endslot @endisset {{-- Footer --}} @slot('footer') @if (! empty($salutation)) {{ $salutation }} @else @include('email.admin.includes.footer') @endif @endslot @endcomponent