@foreach (['danger', 'warning', 'info', 'error'] as $msg) @php $class = $msg; if ($msg == 'error') { $class = 'danger'; } @endphp @if(Session::has('alert-' . $msg))
{{ trans('messages.' . $msg) }}

{!! preg_replace('/[\r\n]+/', ' ', Session::get('alert-' . $msg)) !!}

@endif @endforeach

{{ $subscription->plan->getBillableFormattedPrice() }}

{!! trans('cashier::messages.paypal.checkout.intro', [ 'plan' => $subscription->plan->getBillableName(), 'price' => $subscription->plan->getBillableFormattedPrice(), ]) !!}

{{ csrf_field() }} {{ trans('cashier::messages.paypal_subscription.cancel_new_subscription') }}