@extends('layouts.app') @section('title', __('accounting-reports::lang.batch_print')) @section('content') @lang('accounting-reports::lang.batch_print') Select Accounts & Date Range {!! Form::open(['url' => action([\Modules\AccountingReports\Http\Controllers\BatchPrintController::class, 'process']), 'method' => 'post', 'id' => 'batch-print-form']) !!} @lang('accounting-reports::lang.location') @lang('accounting-reports::lang.all_locations') @foreach($locations as $locationId => $locationName) {{ $locationName }} @endforeach @lang('accounting-reports::lang.from_date'): @lang('accounting-reports::lang.to_date'): Select All Deselect All Select Accounts to Print: @foreach($accounts as $accountId => $accountName) {{ $accountName }} @endforeach Selected: 0 account(s) Print Selected Accounts Reset {!! Form::close() !!} @endsection @section('javascript') @endsection