@extends('frontend.Default.layouts.app') @section('page-title', 'Payment form') @section('add-main-class', 'main-redirect') @section('add-header-class', 'main-redirect') @php $currency = auth()->user()->present()->shop ? auth()->user()->present()->shop->currency : ''; @endphp @section('content') @include('frontend.Default.partials.header')

You will be rediracted to paymant page in 5-7 second!

@if( is_array($data) )
{!! Form::token() !!} @foreach($data['fields'] AS $field=>$value) @endforeach
@else {!! $data !!} @endif
@endsection @section('footer') @include('frontend.Default.partials.footer') @endsection @section('scripts') @include('frontend.Default.partials.scripts') @endsection