@extends('layouts.default') @section('title', trans('general.title.new', ['type' => trans_choice('general.creditmemo', 1)])) @section('new_button') view_listView List remove_red_eyeshow add{{ trans_choice('general.creditmemo', 2)}} @endsection @section('content') {!! Form::open(['url' => 'incomes/invoices', 'files' => true, 'role' => 'form']) !!}
Customer {!! $errors->first('customer_id', '

:message

') !!}
{!! Form::hidden('customer_invoice_parent_id',null,['id' => 'customer_invoice_parent_id']) !!}
{!! Form::hidden('currency_code', setting('general.default_currency') , ['id' => 'currency_code']) !!} {{ Form::textGroup('creditmemo_at', 'Credit Memo Date', 'calendar',['id' => 'creditmemo_at', 'class' => 'form-control', 'required' => 'required', 'data-inputmask' => '\'alias\': \'mm-dd-yyyy\'', 'data-mask' => '' ], Date::now()->format($date_format) ) }}

Items

{{ trans('general.actions') }} {{ trans('general.name') }} {{ trans('invoices.quantity') }} {{ 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::saveButtons('incomes/creditmemo') }}
{!! Form::close() !!} @endsection @push('scripts') @endpush()