@extends('layouts.app') @section('title', __('accounting::lang.chart_of_accounts')) @section('content') @section('css') @endsection @include('accounting::layouts.nav')

@lang( 'accounting::lang.chart_of_accounts' )

@component('components.widget', ['class' => 'box-solid']) @slot('tool') @endslot
@component('components.filters', ['title' => __('report.filters')])
{!! Form::label('account_type_filter', __( 'accounting::lang.account_type' ) . ':') !!} {!! Form::select('account_type_filter', $account_types, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'account_type_filter', 'placeholder' => __('lang_v1.all')]); !!}
{!! Form::label('status_filter', __( 'sale.status' ) . ':') !!} {!! Form::select('status_filter', ['active' => __( 'accounting::lang.active' ), 'inactive' => __('lang_v1.inactive')], null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'status_filter', 'placeholder' => __('lang_v1.all')]); !!}
@endcomponent
@endcomponent
@stop @section('javascript') @endsection