@extends('themes.flaty.layouts.front') @section('title', $seoConfiguration->title ?? '') @if (!$themeSettings->home_page->header_section) @section('hide_header', true) @endif @section('content') @if ($themeSettings->home_page->header_section)

{{ translate('Upload Files & Earn Money', 'home page') }}

{{ translate('hero_description', 'home page') }}

@if (subscription()->plan->upload_status) @else {{ translate('Upload Files', 'home page') }} @endif
@endif @if ($themeSettings->home_page->features_section && $features->count() > 0)

{{ translate('Our Features', 'home page') }}

{{ translate('features description', 'home page') }}

@foreach ($features as $feature)
first ? 'data-aos-delay=' . $loop->index * 100 : '' }}>
{{ $feature->title }}
{{ $feature->title }}

{{ $feature->body }}

@endforeach
@endif @if ($themeSettings->home_page->steps_section && $steps->count() > 0)

{{ translate('How it Works', 'home page') }}

{{ translate('How it Works Description', 'home page') }}

@php $stepCounter = 1; @endphp @foreach ($steps as $step)
first ? 'data-aos-delay=' . $loop->index * 100 : '' }}>
{{ $loop->index + 1 }}
{{ $step->title }}

{{ $step->body }}

@php $stepCounter++; @endphp @endforeach
@endif @if ($themeSettings->home_page->faqs_section && $faqs->count() > 0)

{{ translate('FAQs', 'home page') }}

{{ translate('FAQs Description', 'home page') }}

@foreach ($faqs as $faq)

{!! $faq->body !!}
@endforeach
@endif @if ($themeSettings->home_page->blog_section && $settings->actions->blog_status && $blogArticles->count() > 0)

{{ translate('Latest Blog Posts', 'home page') }}

{{ translate('Latest Blog Posts Description', 'home page') }}

@foreach ($blogArticles as $post)
first ? 'data-aos-delay=' . $loop->index * 100 : '' }}> @include('themes.flaty.partials.blog-post', [ 'post' => $post, ])
@endforeach
@endif @if ($themeSettings->home_page->withdrawal_methods_section && $withdrawalMethods->count() > 0)

{{ translate('Withdrawal Methods', 'home page') }}

@foreach ($withdrawalMethods as $withdrawalMethod)
{{ $withdrawalMethod->name }}
@endforeach
@endif @include('themes.flaty.includes.uploadbox') @push('styles_libs') @endpush @push('scripts_libs') @endpush @endsection