@extends('Frontend.Layouts.default') @section('header-menu-items') @if ( Auth::User() )
  • {{ trans('global.log_out') }}
  • @endif @stop @section('content') @if (Session::has('message'))
    {!! Session::get('message') !!}
    @endif @if (Session::has('success'))
    {!! Session::get('success') !!}
    @endif
    Mobile Direct Debit
    {!! Form::open([ 'route' => ['payments.subscribe', 'plan_id' => $plan_id, 'gateway' => $gateway], 'method' => 'POST', 'id' => 'payment-form' ]) !!}
    {!!Form::label('phone', trans('validation.attributes.phone'))!!} {!!Form::text('phone', null, ['class' => 'form-control'])!!}
    {!! Form::close() !!}
    @stop