@extends('billings.layouts.admin') @section('content') {!! Form::model($model, ['class'=>'form-horizontal']) !!} @include('_version_02.billings.layouts.partials._alert')

{{App\Language::trans('Detail Form')}}

{!! Form::label('code', App\Language::trans('Code'), ['class'=>'control-label col-md-4']) !!}

{{$model->code}}

{!! Form::label('name', App\Language::trans('Name'), ['class'=>'control-label col-md-4']) !!}

{{$model->name}}

{!! Form::label('registration_no', App\Language::trans('Registration No'), ['class'=>'control-label col-md-4']) !!}

{{$model->registration_no}}

{!! Form::label('gst_no', App\Language::trans('GST No'), ['class'=>'control-label col-md-4']) !!}

{{$model->gst_no}}

{!! Form::label('currency_id', App\Language::trans('Currency'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('currency', 'code')}}

{!! Form::label('customer_group_id', App\Language::trans('Group'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('customer_group', 'name')}}

{!! Form::label('payment_term_id', App\Language::trans('Payment Term'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('payment_term', 'code')}}

{!! Form::label('sales_person', App\Language::trans('Sales Person'), ['class'=>'control-label col-md-4']) !!}

{{$model->sales_person}}

{!! Form::label('credit_limit', App\Language::trans('Credit Limit'), ['class'=>'control-label col-md-4']) !!}

{{$model->credit_limit}}

{{App\Language::trans('Contact Detail Form')}}

{!! Form::label('contact_person', App\Language::trans('Contact Person'), ['class'=>'control-label col-md-4']) !!}

{{$model->contact_person}}

{!! Form::label('phone_no_1', App\Language::trans('Phone No. (1)'), ['class'=>'control-label col-md-4']) !!}

{{$model->phone_no_1}}

{!! Form::label('phone_no_2', App\Language::trans('Phone No. (2)'), ['class'=>'control-label col-md-4']) !!}

{{$model->phone_no_2}}

{!! Form::label('fax_no', App\Language::trans('Fax No.'), ['class'=>'control-label col-md-4']) !!}

{{$model->fax_no}}

{!! Form::label('email', App\Language::trans('Email'), ['class'=>'control-label col-md-4']) !!}

{{$model->email}}

{!! Form::label('website', App\Language::trans('Website'), ['class'=>'control-label col-md-4']) !!}

{{$model->website}}

{{App\Language::trans('Addresses Detail Form')}}

{{App\Language::trans('Billing Address')}}

{!! Form::label('billing_address1', App\Language::trans('Address'), ['class'=>'control-label col-md-4']) !!}

{{$model->billing_address1}}

{{$model->billing_address2}}

{!! Form::label('billing_postcode', App\Language::trans('Postcode'), ['class'=>'control-label col-md-4']) !!}

{{$model->billing_postcode}}

{!! Form::label('billing_country_id', App\Language::trans('Country'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('billing_country', 'name')}}

{!! Form::label('billing_state_id', App\Language::trans('State'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('billing_state', 'name')}}

{!! Form::label('billing_city_id', App\Language::trans('City'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('billing_city', 'name')}}

{{App\Language::trans('Delivery Address')}}

{!! Form::label('delivery_address1', App\Language::trans('Address'), ['class'=>'control-label col-md-4']) !!}

{{$model->delivery_address1}}

{{$model->delivery_address2}}

{!! Form::label('delivery_postcode', App\Language::trans('Postcode'), ['class'=>'control-label col-md-4']) !!}

{{$model->delivery_postcode}}

{!! Form::label('delivery_country_id', App\Language::trans('Country'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('delivery_country', 'name')}}

{!! Form::label('delivery_state_id', App\Language::trans('State'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('delivery_state', 'name')}}

{!! Form::label('delivery_city_id', App\Language::trans('City'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_relationed('delivery_city', 'name')}}

{{App\Language::trans('Other Detail Form')}}

{!! Form::label('status', App\Language::trans('Status'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_status_string('status')}}

{!! Form::label('is_suspend', App\Language::trans('Account Suspend'), ['class'=>'control-label col-md-4']) !!}

{{$model->display_answer_string('is_suspend')}}

{!! Form::label('remark', App\Language::trans('Remark'), ['class'=>'control-label col-md-2']) !!}

{{nl2br($model->remark)}}

{!! Form::close() !!} @endsection @section('script') @endsection