@extends('header') @section('head') @parent @include('money_script') @stop @section('content') @parent @include('accounts.nav', ['selected' => ACCOUNT_BANKS]) {!! Former::open()->addClass('main-form warn-on-exit') !!}

 

@if ($bankAccount) {!! Former::populate($bankAccount) !!} {!! Former::hidden('public_id') !!} @else {!! Former::populateField('app_version', DEFAULT_BANK_APP_VERSION) !!} {!! Former::populateField('ofx_version', DEFAULT_BANK_OFX_VERSION) !!} {!! Former::select('bank_id') ->data_bind('combobox: bank_id') ->addOption('', '') ->fromQuery($banks, 'name', 'id') ->blockHelp(trans('texts.bank_accounts_help', ['link' => OFX_HOME_URL])) !!} @endif
{!! Former::password('bank_username') ->data_bind("value: bank_username, valueUpdate: 'afterkeydown'") ->label(trans('texts.username')) !!} {!! Former::password('bank_password') ->label(trans('texts.password')) ->data_bind("value: bank_password, valueUpdate: 'afterkeydown'") ->blockHelp(trans(Request::secure() ? 'texts.bank_password_help' : 'texts.bank_password_warning')) !!}
{!! Former::select('app_version') ->addOption('Quicken 2014', 2300) ->addOption('Quicken 2015', 2400) ->addOption('Quicken 2016', 2500) ->addOption('Quicken 2017', 2600) !!} {!! Former::select('ofx_version') ->addOption('100', 100) ->addOption('101', 101) ->addOption('102', 102) ->addOption('103', 103) ->help('ofx_help') !!}
@if (Auth::user()->hasFeature(FEATURE_EXPENSES))
{!! count(Cache::get('banks')) > 0 ? Button::normal(trans('texts.cancel')) ->withAttributes([ 'data-bind' => 'visible: !importResults()', ]) ->large() ->asLinkTo(URL::to('/settings/bank_accounts')) ->appendIcon(Icon::create('remove-circle')) : false !!} {!! Button::success(trans('texts.validate')) ->withAttributes([ 'data-bind' => 'css: {disabled: disableValidate}, visible: page() == "login"', 'onclick' => 'validate()' ]) ->large() ->appendIcon(Icon::create('lock')) !!} {!! Button::success(trans('texts.save')) ->withAttributes([ 'data-bind' => 'css: {disabled: disableSave}, visible: page() == "setup"', 'style' => 'display:none', 'onclick' => 'save()' ]) ->large() ->appendIcon(Icon::create('floppy-disk')) !!} {!! Button::success(trans('texts.import')) ->withAttributes([ 'data-bind' => 'css: {disabled: disableSaveExpenses}, visible: page() == "import"', 'style' => 'display:none', 'onclick' => 'saveExpenses()' ]) ->large() ->appendIcon(Icon::create('floppy-disk')) !!}
@endif {!! Former::close() !!} @stop