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

:message

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

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
{{-- Invoice List Display Here --}}
{{ Form::fileGroup('attachment', trans('general.attachment')) }}
{{ Form::textareaGroup('notes', trans_choice('general.notes', 2)) }}
{{ Form::saveButton('Save incomes/creditmemo') }}
{!! Form::close() !!} @include('includes.datepicker') @endsection