{{--
Welcome Email - Atomic Design System v2.0 (Luxury Edition)
Sent when a user creates an account on Global Gala
Note: $colors automatically injected via View Composer
--}}
@component('emails.layouts.base', [
'title' => 'Welcome to Global Gala',
'previewText' => "Welcome aboard, {$userName}! Start exploring amazing events.",
'colors' => $colors
])
@component('emails.atoms.h1', ['colors' => $colors])
Welcome to Global Gala, {{ $userName }}
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
Thank you for joining Global Gala, your premier destination for event ticketing and unforgettable experiences.
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
Your account has been successfully created with the email: {{ $userEmail }}
@endcomponent
@include('emails.atoms.spacer', ['height' => '40px'])
@component('emails.organisms.section', ['background' => 'ash', 'colors' => $colors])
@component('emails.atoms.h2', ['colors' => $colors])
What You Can Do Now
@endcomponent
{{-- Custom bullet list with bronze dots - using design tokens --}}
|
|
Browse Events – Discover upcoming concerts, shows, and experiences
|
|
|
|
Select Your Seats – Use our interactive seating system to find the perfect view
|
|
|
|
Manage Bookings – Access your account dashboard anytime
|
|
|
|
Exclusive Offers – Receive early access to special events
|
|
@endcomponent
@include('emails.atoms.spacer', ['height' => '40px'])
|
@component('emails.molecules.button', [
'href' => $frontendUrl . '/events',
'variant' => 'ghost-primary',
'size' => 'large',
'colors' => $colors
])
Explore Events
@endcomponent
|
@include('emails.atoms.spacer', ['height' => '40px'])
@component('emails.organisms.alert-box', [
'variant' => 'info',
'title' => 'Need Help Getting Started?',
'colors' => $colors
])
Our support team is here to assist you with any questions about finding events, selecting seats, or managing your bookings.
@endcomponent
@component('emails.atoms.text', ['colors' => $colors])
Happy booking!
The Global Gala Team
@endcomponent
@endcomponent