@extends('email.layouts.email') @section('content')
Thank you for registration with us.
| Login details | |
| {{ $mail_body->email }} | |
| Activation link | Click here |
@if(isset($mail_body->user_type) && $mail_body->user_type == "restaurant-owner") Thanks for partnering with schools and charities. If you have any questions send us a note to {{ get_setting('email-address-in-email') }} and we will reach out. @else If you face any issue you can contact with us. @endif
{{ get_setting("site-name") }}
@endsection @section('footer-2-user-type') @if(isset($mail_body->user_type) && $mail_body->user_type == "admin") @include('email.partials.footer-2-admin') @elseif(isset($mail_body->user_type) && $mail_body->user_type == "event-organizer") @include('email.partials.footer-2-event-organizer') @elseif(isset($mail_body->user_type) && $mail_body->user_type == "family-member") @include('email.partials.footer-2-family-member') @elseif(isset($mail_body->user_type) && $mail_body->user_type == "restaurant-owner") @include('email.partials.footer-2-restaurant-owner') @elseif(isset($mail_body->user_type) && $mail_body->user_type == "sponsor") @include('email.partials.footer-2-sponsor') @endif @endsection