@extends('layouts.admin') @section('title', __('Pricing')) @section('page-title', __('Pricing')) @section('content')
{{ __('Back') }} {{ __('Preview') }}
@csrf
{{ __('Hero Section') }}
{{ __('Title & subtitle') }}
{{ __('Labels') }}
{{ __('Badges & buttons') }}
{{ __('FAQ Section') }}
{{ __('Questions & answers') }}
@php $faqOld = old('faq'); $faqForm = is_array($faqOld) ? $faqOld : (is_array($faq ?? null) ? $faq : []); @endphp
@foreach($faqForm as $idx => $row)
{{ __('FAQ') }} {{ $idx + 1 }}
@endforeach
{{ __('Save') }}
@endsection