@extends('frontend::layouts.master') @section('content')
{{-- {{ __('frontend.back_to_subscription_plan') }} --}}
@csrf
{{ __('frontend.payment_details') }}
{{ __('frontend.price') }}
{{ Currency::format($data->price) }}
{{ __('messages.lbl_discount') }}
{{ Currency::format(($data->price * $data->discount)/100) }}
{{ __('frontend.total') }}
{{ Currency::format($data->price - ($data->price * $data->discount)/100) }}
{{ __('frontend.total_payment') }}
{{ Currency::format($data->price - ($data->price * $data->discount)/100) }}

{{ __('frontend.payment_secure') }}

@endsection