@extends('layouts.app') @section('title', __( 'account.balance_sheet' )) @section('content')

@lang( 'account.balance_sheet')

@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('bal_sheet_location_id', __('purchase.business_location') . ':') !!} {!! Form::select('bal_sheet_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('fiscal_year', __('Fiscal Year') . ':') !!} {!! Form::select('fiscal_year', $fiscal_years, $current_year, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
{!! Form::label('as_of_date', __('As Of Date') . ':') !!}
@endcomponent

Loading...
@stop @section('javascript') @endsection