@extends('template.layouts.page') @section('title_postfix', __('Account details')) @section('content_container_classes', 'container-fluid') @section('content_header') {{ __('Account details for ":account"', ['account' => $account->name]) }} @stop @section('content')
{{ __('Overview') }}
{{ __('Active') }}
@if ($account->active) @else @endif
{{ __('Currency') }}
{{ $account->config->currency->iso_code }}
{{ __('Opening balance') }}
{{ __('Current cash value') }}
{{ __('Current balance with investments') }}

{{ __('Transaction filters') }}

{{ __('Reconciled') }}
{{ __('Date') }}
{{ __('Transaction history') }}
{{ __('Scheduled transactions') }}
@include('template.components.model-delete-form') @stop