@extends('layouts.public') @section('title', 'SYSTRONICS — Downloads') @section('meta_description', 'Installers, user guides and brochures for SYSTRONICS products are published in the Partners Area.') @section('content') @include('public.partials.page-chrome', [ 'eyebrow' => 'Partners', 'title' => 'Downloads', 'lede' => 'Installers, user guides and brochures are published in the SYSTRONICS Partners Area. Create an account and log in to download the files you are entitled to.', 'crumbs' => [ ['label' => 'Home', 'url' => route('public.home')], ['label' => 'Downloads'], ], ])
@guest
The information you have requested is available to SYSTRONICS Partners only.

Log in

If you have a User ID and a Password already, please log in to the SYSTRONICS Partners Area.

@csrf
@error('login'){{ $message }}@enderror

Forgot your password?

Enter the User ID or company e-mail of your partner account and we will send a reset link.

@csrf

Create a Partner Account

To register as a SYSTRONICS Partner, please create an account. No fees are charged to become a SYSTRONICS Partner!

You will be returned to Downloads after signing in.

@else

Partner area

Product downloads

Find installers, user guides, and brochures for the SYSTRONICS products you are entitled to.

@if ($recent->isNotEmpty() && $activeFilters->isEmpty())

Recently downloaded

@foreach ($recent as $asset) {{ $asset->displayName() }} @endforeach
@endif
Product
All products @foreach ($categories as $cat) @continue($cat['is_internal'] && ! auth()->user()?->can('downloads.manage')) {{ $cat['code'] }} {{ $cat['label'] }} {{ $cat['count'] }} @endforeach
File type
@php $types = [ '' => 'Any type', 'installer' => 'Installers', 'document' => 'Guides & docs', 'brochure' => 'Brochures', 'other' => 'Other', ]; @endphp @foreach ($types as $value => $label) @php $typeQuery = array_merge(request()->except(['page', 'type']), $value === '' ? [] : ['type' => $value]); @endphp {{ $label }} @endforeach
@foreach (request()->except(['sort', 'page']) as $key => $value) @if (is_scalar($value) && $value !== '') @endif @endforeach
@if ($groups->isNotEmpty())
Collections
Any collection @foreach ($groups as $group) {{ $group->name }} @endforeach
@endif @if ($activeFilters->isNotEmpty())
{{ $total }} {{ \Illuminate\Support\Str::plural('file', $total) }} match Clear filters
@endif
{{ number_format($total) }} {{ \Illuminate\Support\Str::plural('file', $total) }} @if ($selectedCategory !== '') in {{ $productNames->get($selectedCategory, $selectedCategory) }} @endif
@forelse ($sections as $folder => $rows)

{{ $folder }} {{ $rows->count() }}

    @foreach ($rows as $asset) @php $kind = $asset->fileKind(); $ext = $asset->extension(); $catCode = strtoupper((string) $asset->category); $productLabel = $productNames->get($catCode, $catCode); @endphp
  • {{ $asset->displayName() }}
    @if ($catCode !== '') {{ $catCode }}@if ($productLabel !== $catCode) · {{ $productLabel }}@endif @endif @if ($asset->humanSize() !== '') {{ $asset->humanSize() }} @endif @if ($asset->is_internal) Internal @endif
    Download
  • @endforeach
@empty

No files matched

Try another product code, clear the file-type filter, or search by version (for example 2026 or UA Guide).

Show all downloads
@endforelse @if ($lastPage > 1) @endif
@endguest
@endsection