{{-- Load preview fonts from Google Fonts (admin preview only) --}}
@csrf

Choose a font family, base font size, and heading weight for the frontend theme.

{{-- Font Family --}}
Font Family
@foreach($typography['font_family']['options'] as $font) @php $selected = ($typography['font_family']['value'] ?? $typography['font_family']['default']) === $font; @endphp
@endforeach

{{-- Base Font Size --}}
Base Font Size
@foreach($typography['base_font_size']['options'] as $size) @php $selected = ($typography['base_font_size']['value'] ?? $typography['base_font_size']['default']) === $size; @endphp @endforeach

{{-- Heading Weight --}}
Heading Weight
@foreach($typography['heading_weight']['options'] as $weight) @php $selected = ($typography['heading_weight']['value'] ?? $typography['heading_weight']['default']) === $weight; @endphp @endforeach