@extends('layouts.default') @section('title', trans('general.title.new', ['type' => trans_choice('general.debitmemo', 1)])) @section('new_button') view_list{{trans_choice('general.debitmemo', 1) .' List' }} @endsection @section('content') {!! Form::open(['url' => 'expenses/debitmemo', 'files' => true, 'role' => 'form', 'id'=>'debitMemo']) !!}
{{ trans_choice('general.vendors', 1) }} {!! Form::select('vendor_id', $vendors, null, array_merge(['id' => 'vendor_id', 'class' => 'selectpicker','data-live-search'=>'true', 'placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.vendors', 1)])])) !!} {!! $errors->first('customer_id', '

:message

') !!}
{!! Form::hidden('currency_code', setting('general.default_currency') , ['id' => 'currency_code']) !!}
{{ Form::textGroup('debitmemo_at', 'Debit Memo Date', Date::now()->format('Y-m-d'), ['id' => 'debitmemo_at', 'class' => 'form-control', 'data-inputmask' => '\'alias\': \'yyyy-mm-dd\'']) }}

Items

{{ Form::hidden('total_grand', null, ['id'=>'grand-total-input']) }}
{{ trans('general.actions') }} {{ trans('general.account') }} {{ trans('general.description') }} {{ trans('invoices.price') }} {{ trans('invoices.total') }}
0
{{ trans('invoices.sub_total') }} 0
{{ trans('invoices.total') }} 0
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
{{ Form::textareaGroup('notes', trans_choice('general.notes', 2)) }}
{{ Form::saveButton('expenses/debitmemo') }}
{!! Form::close() !!} @include('accounts/common/models/chartofaccount') @include('includes.datepicker') @endsection