@extends('layouts.landing.app') @section('title', translate('messages.restaurant_registration')) @push('css_or_js') @endpush @section('content')

{{ translate('messages.Subscription_Payment') }}

{{ translate('messages.general_information') }}
{{ translate('messages.business_plan') }}
{{ translate('messages.complete') }}
@if (request()?->flag == 'success' || request()?->type == "new_join?flag=success")

{{ translate('messages.Payment_Successfull_!') }}

@else

{{ translate('messages.Payment_Unsccessfull_!!!') }}

@endif
@php($login_data = App\Models\DataSetting::where('key', 'restaurant_login_url')->pluck('value')->first()) @if (request()?->flag == 'success' || request()?->type == "new_join?flag=success")

{{ translate('Congratulations!') }}

{{ translate('messages.Your_Payment_is_Successfull.') }}
@if (request()?->type == 'new_join?flag=success')
{{ translate('messages.Admin_will_confirm_your_registration_request_or_provide_review.') }}
@else
{{ translate('messages.Login_to_your_restaurant') }}
@endif
@else

{{ translate('Payment_error_!') }}

{{ translate('Due_to_payment_transaction_error_your_registration_could_not_complete.') }}
{{ translate('messages.Please_Try_Again') }}
@endif
@endsection