@extends('view.emails.plain') @section('body')

{{ __('Account Updated') }}

{{ __('Hi') }} {{ $vendor->name }}

@if ($vendor->is_active)

{{ __("Your account has been activated. You can now manage your account via your manager account.") }}

{{ __("Here's where you can login to") }} {{ env('APP_NAME','') }} {{ __("(be sure to bookmark this page).") }}

{{ route('login') }}

@else

{{ __("Your account has just been deactivated. You will not be able to accept order from customers.") }} @if ($vendor->use_subscription) {{ __("This can be caused by an expired subscription. You would need to login and subscribe to a Subscription plan for your account be be activated again.") }} @endif

{{ __("Here's where you can contact support for more info") }}

{{ route('contact') }}

@endif
@endsection