@extends('layouts.popup.large') @section('content')

{{ trans('messages.email_verification_plan.select_plan') }}

@include('email_verification_plans._selectType', [ 'tab' => 'one_time_pay', ])

{{ trans('messages.email_verification_plan.one_time_pay.intro') }}

@if (empty($plans))
@include('elements._notification', [ 'level' => 'danger', 'message' => trans('messages.plan.no_available_plan') ])
@else
@foreach ($plans as $key => $plan)
{!! format_price($plan->price, $plan->currency->format, true) !!} {{ $plan->currency->code }}

add_task {{ trans('messages.email_verification_credits.count', [ 'number' => number_with_delimiter($plan->credits) ]) }}


{{ $plan->description }}

restore {{ trans('messages.plan.no_time_limit') }}
{{ trans('messages.plan.no_time_limit.wording') }}
$plan->uid, ]) }}" class="btn btn-primary rounded-3 d-block mt-4 shadow-sm"> {{ trans('messages.plan.select') }}
@endforeach
@endif
@endsection