@extends('partials.components.section', ['align' => '']) @section('section') @if ($section['section_fields_arguments'] ?? false) @endif @if ($section['section_fields_buttons'] ?? false)
@foreach ($section['section_fields_buttons'] as $button) @if ($button['button'] ?? false) @include('partials.components.button', [ 'button' => $button['button'], 'type' => $button['type'] ?? 'default', 'class' => 'js-appear', ]) @endif @endforeach
@endif @overwrite