@lang('base/bank_reconciliation.document_title')
@include('flash::message')
@if (!$errors->isEmpty())
{{ __('general.error_form') }}
@endif
@lang('general.text_add')
{!! Form::open(['route' => 'bank-reconciliations.store','method' => 'POST','class' => '','role' => 'form','id'=>'form','files' => true]) !!}
{!! Form::hidden('key', old('key','')) !!}
{!! Form::button(__('general.button_search'),['type' => 'button', 'class' => 'btn btn-sm btn-default btn-block', 'id' => 'btn_search_cfdi_downloads']) !!}
{!! Form::button(__('general.button_import'),['type' => 'button', 'class' => 'btn btn-sm btn-info', 'id' => 'btn_template_import']) !!}
{!! Form::close() !!}
{!! html_entity_decode(Form::label('name', __('base/bank_reconciliation.entry_name') . ' *', ['class' => 'control-label'])) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control', 'placeholder' => __('base/bank_reconciliation.help_name'),'required','autofocus']) !!}
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@lang('base/bank_reconciliation.text_cfdi_downloads')
{!! html_entity_decode(Form::label('filter_date_from', __('general.text_date_from') . '', ['class' => 'control-label'])) !!}
{!! Form::text('filter_date_from', request()->input('filter_date_from',\App\Helpers\Helper::date(Date::parse('first day of this month'))), ['class' => 'form-control', 'placeholder' => __('general.text_date_from'),'autocomplete'=>'off']) !!}
{!! html_entity_decode(Form::label('filter_date_to', __('general.text_date_to') . '', ['class' => 'control-label'])) !!}
{!! Form::text('filter_date_to', request()->input('filter_date_to',\App\Helpers\Helper::date(Date::parse('last day of this month'))), ['class' => 'form-control', 'placeholder' => __('general.text_date_to'),'autocomplete'=>'off']) !!}
{!! Form::button(__('general.button_search'),['type' => 'button', 'class' => 'btn btn-sm btn-default btn-block', 'id' => 'btn_search_cfdi_downloads']) !!}
| @lang('base/bank_reconciliation.column_date') | @lang('base/bank_reconciliation.column_name') | @lang('base/bank_reconciliation.column_currency_code') | @lang('base/bank_reconciliation.column_credit') | @lang('base/bank_reconciliation.column_debit') |
|---|
@lang('base/bank_reconciliation.text_bank_moves')
{!! Form::button(__('general.button_import'),['type' => 'button', 'class' => 'btn btn-sm btn-info', 'id' => 'btn_template_import']) !!}
| @lang('base/bank_reconciliation.column_date') | @lang('base/bank_reconciliation.column_reference') | @lang('base/bank_reconciliation.column_currency_code') | @lang('base/bank_reconciliation.column_credit') | @lang('base/bank_reconciliation.column_debit') |
|---|
{!! Form::button(__('general.button_auto_reconciliation'),['type' => 'button', 'class' => 'btn btn-sm btn-info', 'id' => 'btn_auto_reconciliation']) !!}
{!! Form::button(__('general.button_manual_reconciliation'),['type' => 'button', 'class' => 'btn btn-sm btn-info', 'id' => 'btn_manual_reconciliation']) !!}
{!! Form::button(__('general.button_unreconcile'),['type' => 'button', 'class' => 'btn btn-sm btn-info', 'id' => 'btn_unreconcile']) !!}
{!! Form::button(__('general.button_save'),['type' => 'button', 'class' => 'btn btn-sm btn-primary', 'id' => 'btn_save']) !!}