@extends('layouts.app') @section('page-header') @endsection @section('content')

{{ __('Congratulations') }}!

@if ($plan->plan_type == 'subscription')

{{ __('You have successfully subscribed to') }} {{ $plan->plan_name }} {{ __('monthly subscription plan') }}.

{{ __('Each month you will have') }} {{ number_format($plan->characters) }} {{ __('characters added to your account') }}.

@endif @if ($plan->plan_type == 'prepaid')

{{ __('You have successfully added') }} {{ number_format($plan->characters) }} {{ __('characters to your account') }}.

@if ($plan->bonus > 0)

{{ __('Bonus') }} +{{ number_format($plan->bonus) }} {{ __('characters were added as well') }}.

@endif
@endif
@endsection