@extends('layouts.app') @section('title', $division->name) @section('nav-items')
  • Divisions
  • Logos
  • Company Profile
  • @endsection @section('styles') @endsection @section('content')
    @if($division->logo_path) {{ $division->name }} @endif

    {{ $division->name }}

    @if($division->description)

    {{ $division->description }}

    @endif

    Available Files

    @if($division->files->count() > 0)
    @foreach($division->files as $file)
    {{ $file->name }}
    {{ str_replace('_', ' ', $file->file_type) }}
    @if($file->description)
    {{ $file->description }}
    @endif
    📧 Request to Download: Fill out the form below to request access to this file. Once approved by our administrator, you will receive an OTP code via email to download the file.
    @csrf
    @endforeach
    @else

    No files available for this division.

    @endif
    @endsection