{{-- Add banner --}}
@csrf

Add homepage promotional banner

Manage homepage slider pictures and customer contact messages here. Recommended banner size: 1600x530px or wider.

@if ($errors->any())
{{ $errors->first() }}
@endif
{{-- Banner list --}}

Current banners ({{ $banners->count() }})

@forelse ($banners as $banner)
@csrf @method('PUT')
{{ $banner->title }}
@empty

No banners yet. Add one above - the storefront will show its default hero until you do.

@endforelse
{{-- Inbox --}}

Store inbox

Messages sent from the storefront contact form.

@forelse ($messages as $message)
@unless ($message->read_at) @endunless

{{ $message->name }} - {{ $message->email }}@if ($message->phone) - {{ $message->phone }}@endif

{{ $message->created_at->format('d M Y, h:i A') }} @unless ($message->read_at)
@csrf
@endunless
@if ($message->subject)

{{ $message->subject }}

@endif

{{ $message->message }}

@empty

No messages yet.

@endforelse
{{ $messages->links() }}