@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
    {!! trans('front.select_gateway') !!}
    @if(empty($gateways))

    {{ trans('admin.billing_gateway') . ' ' . lcfirst(trans('global.not_found')) }}

    @else
    @foreach($gateways as $gateway) @endforeach
    @endif
    @stop