@extends('partials.components.section', ['align' => ''])
@section('section')
@if ($section['section_fields_arguments'] ?? false)
@foreach ($section['section_fields_arguments'] as $argument)
-
@include('partials.svg.check', ['class' => 'shrink-0'])
@if ($argument['title'] ?? false)
{{ $argument['title'] }}
@endif
@if ($argument['text'] ?? false)
{!! $argument['text'] !!}
@endif
@endforeach
@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