@extends('layouts.default') @section('title', 'Premium') @section('description', 'Unleash the full potential of your creative journey with our premium plan. 30 days trial • Then 5 € / month • Cancel anytime') @section('class', 'ms-0') @section('content')
@if (session('error'))
{!! session('error') !!}
@endif

{{config('app.name')}} Premium

{{ __('Unleash the full potential of your creative journey with our premium plan') }}

@if(!Auth::user()?->premium_subscription) {{config('plans.trial_period.period')}} {{ __('days trial') }} • {{ __('Then') }} @endif @foreach($plans as $plan) {{$plan->price}} € / {{ __($plan->period)}} @endforeach • {{ __('Cancel anytime') }}

{{ __('Billing') }}

@foreach($plans as $plan) @endforeach
{{ __('Save 2 months with the annual subscription') }}
@foreach($plans as $plan)
{{$plan->price}} € / {{ __($plan->period) }}
  • {{ __('Uploads') }}
    {{ __('Unlimited videos uploads and storage space') }}
  • {{ __('Downloads') }}
    {{ __('Save videos for when you really need them – like when you’re on a plane or commuting.') }}
  • {{ __('Channel promotion') }}
    {{ __('Promote your channel in discovery page') }}
@if(Auth::user()?->has_current_subscription)
{!! __('premium.exist', ['route' => route('user.edit')]) !!}
@elseif(Auth::user()?->premium_subscription) {{ __('premium.get', ['app_name' => config('app.name')])}}

{{ __('premium.billing_without_trial', ['date' => now()->translatedFormat('j F Y'), 'period' => __($plan->period)]) }}

{{ __('You will be charged automatically at the end of each period.') }} {{ __('Payments won\'t be refunded for partial billing periods. Cancel anytime from your account.') }}
@else {{ __('Start Trial')}}

{{ __('premium.billing', ['date' => now()->add('days', config('plans.trial_period.period'))->translatedFormat('j F Y'), 'period' => __($plan->period)]) }}

{{ __('You will be charged automatically at the end of each period.') }} {{ __('Payments won\'t be refunded for partial billing periods. Cancel anytime from your account.') }}
@endif
@endforeach
@if(!Auth::user()?->premium_subscription)

{{ __('premium.trial_period', ['days' => config('plans.trial_period.period')]) }}

{{ __('Start your free trial of ' .config('app.name'). ' Premium and enjoy all premium features.') }}

{{now()->add('days', config('plans.trial_period.period'))->sub('days', config('plans.trial_period.email_reminder'))->translatedFormat('j F Y')}}

{{ __('premium.email_reminder', ['days' => config('plans.trial_period.email_reminder'), 'app_name' => config('app.name')]) }}

{{now()->add('days', config('plans.trial_period.period'))->translatedFormat('j F Y')}}

{{ __('Your subscription begins unless you canceled it during the trial period.') }}
@endif
Auth::user()?->premium_subscription])>
{{ __('Plans comparison') }}
{{ __('Free plan') }} {{ __('Premium plan') }}
{{ __('Max Video Uploads') }} {{config('plans.free.max_uploads')}} {{ __('Unlimited') }}
{{ __('Max File Size Per Upload') }} @size(config('plans.free.max_file_size')) @size(config('plans.premium.max_file_size'))
{{ __('Video Storage Space') }} @size(config('plans.free.max_videos_storage')) {{ __('Unlimited') }}
{{ __('Downloads') }}
{{ __('Channel promotion') }}
@endsection