@extends('layout.main') @section('content')

New Account

@include('includes.errors') @include('includes.success')

Close


Account Details
{{Form::select('Owner',$account_owners,User::get_userID(),array("class"=>"select2"))}}
{{Form::select('Ownership', $ownership_array, Input::old('Ownership') ,array("class"=>"form-control"))}}
{{Form::select('ResellerOwner',$reseller_owners,'',array("class"=>"select2"))}}
{{Form::SelectControl('currency',0,$company->CurrencyId,0,'CurrencyId')}}
{{Form::select('TimeZone', $timezones, '' ,array("class"=>"form-control select2"))}}
{{Form::select('VerificationStatus', Account::$doc_status,Account::NOT_VERIFIED,array("class"=>"select2 small",'disabled'=>'disabled'))}}
@if(!empty($dynamicfields) && count($dynamicfields)>0)
@foreach($dynamicfields as $dynamicfield) @if(!empty($dynamicfield['FieldSlug'])) @if($dynamicfield['FieldSlug']=='accountgateway')
{{Form::select('accountgateway[]', CompanyGateway::getCompanyGatewayIdList(), '' ,array("class"=>"form-control select2",'multiple'))}}
@endif @if($dynamicfield['FieldSlug']=='vendorname')
@endif @if($dynamicfield['FieldSlug']=='pbxaccountstatus')
{{Form::select('pbxaccountstatus', array('0'=>'Unblock','1'=>'Block'),'',array("class"=>"form-control select2"))}}
@endif @if($dynamicfield['FieldSlug']=='autoblock')
@endif @endif @endforeach
@endif
{{ddl_language("", "LanguageID", ( isset($AccountBilling->Language)?$AccountBilling->Language:Translation::$default_lang_id ),"", "id")}}
Description
Address Information
{{Form::select('Country', $countries,Input::old('Country', $company->Country),array("class"=>"form-control select2"))}}
Billing
{{Form::SelectControl('billing_class',1)}}
{{Form::select('BillingType', AccountApproval::$billing_type, '1',array('id'=>'billing_type',"class"=>"select2 small"))}}
{{Form::select('BillingTimezone', $timezones, '' ,array("class"=>"form-control select2"))}}
{{Form::text('BillingStartDate','',array('class'=>'form-control datepicker billing_start_date',"data-date-format"=>"yyyy-mm-dd"))}}
{{Form::select('BillingCycleType', SortBillingType(1), '' ,array("class"=>"form-control select2"))}}
{{Form::text('NextInvoiceDate', '',array('class'=>'form-control datepicker next_invoice_date',"data-date-format"=>"yyyy-mm-dd"))}}
{{Form::text('NextChargeDate', '',array('class'=>'form-control datepicker next_charged_date',"data-date-format"=>"yyyy-mm-dd",'disabled'))}}
{{Form::select('AutoPaymentSetting', BillingClass::$AutoPaymentSetting, "never" ,array("class"=>"form-control select2 small"))}}
{{Form::select('AutoPayMethod', BillingClass::$AutoPayMethod, ( isset($AccountBilling->AutoPayMethod)?$AccountBilling->AutoPayMethod:'0' ),array("class"=>"form-control select2 small"))}}
{{Form::select('SendInvoiceSetting', BillingClass::$SendInvoiceSetting, "after_admin_review" ,array("class"=>"form-control select2"))}}
{{Form::select('LateFeeID', LateFee::getLateFeeList(), '' ,array("class"=>"form-control select2"))}}
@if($pbxaccountblock_count>0)
@else @endif
@include('currencies.currencymodal') @include('billingclass.billingclassmodal') @include('includes.ajax_submit_script', array('formID'=>'account-from' , 'url' => 'accounts/store','update_url'=>'accounts/update/{id}' )) @stop @section('footer_ext') @parent @stop