@extends('emails.layouts.base') @section('content')

{{ __('Subscription Cancelled') }}

{{ __('Your subscription has been cancelled.') }}

@include('emails.partials.details-box', [ 'title' => __('Subscription Details'), 'details' => [ __('Plan') => $planName, __('Access Until') => $accessUntil ], 'primaryColor' => $primaryColor ])

{{ __('You will continue to have access to your subscription benefits until the end date shown above.') }}

@include('emails.partials.button', [ 'url' => $dashboardUrl, 'text' => __('Resubscribe'), 'primaryColor' => $primaryColor, 'primaryForeground' => $primaryForeground ])

{{ __('We hope to see you again soon!') }}

@endsection