@extends('layouts.admin', ['title' => 'Website Content']) @section('content')
Website Content
Update text blocks and lists used across the website pages.
@csrf @foreach($schema as $group => $fields)
{{ $group }}
@foreach($fields as $field)
@php($name = $field['name']) @php($value = old($name, $values[$name] ?? '')) @if(in_array($field['type'], ['textarea', 'list', 'html'], true)) @else @endif
@endforeach
@endforeach
@endsection