@if (Session::has('message'))
{!! Session::get('message') !!}
@endif
@if (Session::has('success'))
{!! Session::get('success') !!}
@endif
{!! Form::open([
'route' => ['register.step.store', 'step' => 'checkout'],
'method' => 'POST',
'id' => 'payment-form'
]) !!}
{!! Form::hidden('order_id', $order->id) !!}
Enter your payment information
- {{ trans('front.order_summary') }}
-
-
{{ trans('global.total') }}
{{ settings('currency.symbol') . $order->price }}
-
-
{!! Form::close() !!}