@extends('layouts.master') @section('content')

Landing Page Settings

@csrf
@if($landing->hero_image) @endif
@if($landing->apk_path)
Current APK
@endif
If APK uploaded, the download button will use APK. Otherwise this URL is used.
@php $features = $landing->features ?? []; @endphp @foreach($features as $i => $f)
@endforeach
Drag & Drop images here or click to upload
    @foreach(($landing->screenshots ?? []) as $i => $s)
  • @endforeach
SEO Settings
@if($landing->og_image) @endif
{{-- FAQ Section --}}
FAQ
@php $faqs = $landing->faq ?? []; @endphp @foreach($faqs as $i => $f)
@endforeach
{{-- Follow Links Section --}}
Follow Links (title + url)
@php $follows = $landing->follow_links ?? []; @endphp @foreach($follows as $i => $fl) @endforeach
{{-- ====================== JS for dynamic repeaters ======================= --}} @endsection @section('scripts') @endsection