@extends('Frontend.Layouts.default') @section('header-menu-items') @if ( Auth::User() )
  • {{ trans('global.log_out') }}
  • @endif @stop @section('styles') @stop @section('content') @if (Session::has('message'))
    {!! Session::get('message') !!}
    @endif @if (Session::has('success'))
    {!! Session::get('success') !!}
    @endif
    Stripe
    {!! Form::open([ 'route' => ['payments.subscribe', 'plan_id' => $plan_id, 'gateway' => $gateway], 'method' => 'POST', 'id' => 'payment-form' ]) !!} {{-- A Stripe Element will be inserted here. --}}
    {!! Form::close() !!}
    @stop @section('self-scripts') {{-- It should always be loaded directly from https://js.stripe.com --}} @stop