@extends('layouts.default') @section('title', trans('general.title.new', ['type' => trans_choice('general.customers', 1)])) @section('new_button') view_list{{ trans_choice('general.customers', 1) . ' List'}} @endsection @section('content')
{!! Form::open(['url' => 'incomes/customers', 'role' => 'form']) !!}
{{ Form::selectGroup('customer_type',' Type',null,['customer'=>'Customer','job'=>'Job','w2c'=>'W2C']) }} {{ Form::textGroup('name', trans('general.company_name'), 'id-card-o',['id'=>'name','required'=>'required']) }} {{-- Sub Customer Code --}}
Select Customer
Bill To
{{-- Sub Customer Code --}} {{ Form::textGroup('customer_email', trans('general.email'), 'envelope', [],null,'col-md-3') }} {{ Form::textGroup('cc_email', trans('general.ccemail'), 'envelope', [],null,'col-md-3') }} {{ Form::hidden('currency_code', setting('general.default_currency'),['id' => 'currency_code']) }} {{ Form::textGroup('phone', trans('general.phone'), 'phone', [],null,'col-md-3' ) }} {{-- {{ Form::textGroup('mobile', trans('general.mobile'), 'phone', [],null,'col-md-3' ) }} --}} {{ Form::textGroup('website', trans('general.website'), 'globe', []) }} {{ Form::textGroup('company', trans('general.coustomer_name'), 'company',[],null) }} {{ Form::selectGroup('payment_method', trans_choice('general.payment_methods', 1), 'credit-card', $payment_methods, setting('general.default_payment_method')) }}
{{ trans_choice('general.net_term', 1) }} {!! Form::select('net_term', $terms, setting('general.default_netterm'), array_merge(['class' => 'selectpicker','data-live-search'=>'true','placeholder' => trans('general.form.select.field', ['field' => trans_choice('general.net_term', 1)])])) !!}
{!! $errors->first('net_term', '

:message

') !!}
{{ Form::hidden('currency_code',setting('general.default_currency')) }} {{ Form::textareaGroup('address', trans('general.billingaddress') ,null,['rows' => '3','id'=>'address'],'col-md-6' )}}
{{ Form::textarea('shipping_address', null ,['class'=>'form-ControlTextArea', 'id'=> 'shipping_address' ,'rows' => 3]) }}
{{ Form::radioGroup('enabled', trans('general.status')) }}
{!! Form::close() !!}
@endsection