@extends('layouts.admin') @section('title', 'Homepage — '.config('app.name')) @section('page_title', 'Homepage') @section('breadcrumbs') @endsection @section('content')
This is the public home page text. Change a field, click Save at the bottom, then open the website home page to check it. Product names come from Products. Release names and dates come from Product releases. Links stay the same so the site does not break.
@csrf @method('PUT')
Browser tab
Blue banner at the top

The three checked lines under the SYSTRONICS name.

@foreach (old('hero_lines', $copy['hero_lines']) as $i => $line)
@endforeach
Industry spotlight (top right card)
Section headings
Use {year} where the year should appear (from Product releases).
Industry solutions (four cards)
@foreach (old('solutions.items', $copy['solutions']['items']) as $i => $item)
Card {{ $i + 1 }}
@endforeach
Services (four tiles)
@foreach (old('services.items', $copy['services']['items']) as $i => $item)
Tile {{ $i + 1 }}
Site path such as /services/customization-services, or a full https:// address.
@endforeach
How to order (four rows)
@foreach (old('ordering.items', $copy['ordering']['items']) as $i => $item)
@endforeach
Partner downloads card
Bottom call to action (dark blue bar)
View home page
@endsection