@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/hardware/general.bulk_audit') }} @parent @stop {{-- Page content --}} @section('content') {{ trans('admin/hardware/general.bulk_audit') }} {{-- Location controls: hidden entirely when the selection spans multiple companies AND FMCS location scoping is on, since a shared location can't legitimately fit assets from different companies under that mode. When one shared company is detected, the picker is scoped so only that company's locations show. Otherwise the picker is unscoped, matching the pre-existing behavior. All three cases are decided server-side in BulkAssetsController::auditLocationVisibility. --}} @if ($hideLocationFields)

{{ trans('admin/hardware/general.bulk_audit_location_hidden_mixed_companies') }}

@else {{-- When unchecked (default), the location above is only recorded on each audit log entry (as "where the audit happened"). When checked, the assets' physical location_id is also overwritten to that location. --}} @endif {{-- Next audit date. Prefilled with today + audit_interval from settings so users can accept the calculated default or override for this batch. --}} {{-- Shared note applied to every audit log entry. --}} {{-- Shared audit image. If uploaded, the same file is saved per-asset (audit-{id}-...) and attached to every audit log entry --}}
@stop