@extends('frontend.layouts.master') @section('title', __(gss('front_page_title', "Welcome"))) @section('desc', gss('seo_description_home', gss('seo_description', ''))) @section('keyword', gss('seo_keyword_home', gss('seo_keyword', ''))) @section('content') @if(!empty($schemes))
{{ Panel::scheme_card('home', ['class' => 'is-dark', 'button' => 'btn-primary', 'scheme' => $schemes['highlight']]) }}
{{ Panel::scheme_card('home', ['scheme' => $schemes['one']]) }}
{{ Panel::scheme_card('home', ['scheme' => $schemes['two']]) }}
{{-- .row --}}
{{-- .container --}}
@endif @if(gss('front_page_extra', 'on')=='on' && (!auth()->check() || (auth()->check() && auth()->user()->role=='user')))
@if(!auth()->check())
{{ (gss('extra_step1_title')) ? __(gss('extra_step1_title')) : __("Register your free account") }}

{{ (gss('extra_step1_text')) ? __(gss('extra_step1_text')) : __("Sign up with your email and get started!") }}

@endif
{{ (gss('extra_step2_title')) ? __(gss('extra_step2_title')) : __("Deposit fund and invest") }}

{{ (gss('extra_step2_text')) ? __(gss('extra_step2_text')) : __("Just top up your balance & select your desired plan.") }}

@if (!auth()->check()) {{ __("Make a deposit") }} @else {{ __("Make a deposit") }} @endif
{{ (gss('extra_step3_title')) ? __(gss('extra_step3_title')) : __("Payout your profits") }}

{{ (gss('extra_step3_text')) ? __(gss('extra_step3_text')) : __("Withdraw your funds to your account once earn profit.") }}

@if (!auth()->check()) {{ __("Withdraw profits") }} @else {{ __("Withdraw profits") }} @endif
{{ (gss('extra_step4_title')) ? __(gss('extra_step4_title')) : __("Payment processors we accept") }}

{{ (gss('extra_step4_text')) ? __(gss('extra_step4_text')) : __("We accept paypal, cryptocurrencies such as Bitcoin, Litecoin, Ethereum more.") }}

@php $accepted_icons = gss('extra_step4_icons', ['paypal-alt', 'sign-btc', 'sign-eth', 'sign-ltc']); @endphp @if (!empty($accepted_icons) && is_array($accepted_icons))
    @foreach ($accepted_icons as $icon)
  • @endforeach
@endif
@else
@endif @endsection