@extends('layouts.front') @section('content') @lang('front.headings.payment') @if ($message = session()->get('success')) {!! $message !!} {{ session()->forget('success') }} @endif @if ($message = session()->get('error')) {!! $message !!} @endif @if ($message = session()->get('error')) please pay again with @if($credentials->stripe_status == 'active' && $booking->amount_to_pay > 0) @lang('front.buttons.stripe') @endif @if($credentials->paypal_status == 'active' && $booking->amount_to_pay > 0) @lang('front.buttons.paypal') @endif @if($credentials->razorpay_status == 'active' && $booking->amount_to_pay > 0) @lang('front.buttons.razorpay') @endif @if($credentials->offline_payment == 1) @lang('front.buttons.offlinePayment') @endif {{ session()->forget('error') }} @endif @lang('front.navigation.backToHome') @endsection @push('footer-script') @if($credentials->stripe_status == 'active') @endif @if($credentials->razorpay_status == 'active') @endif @endpush