{!! Form::label('name',__('business.business_name') . ':*') !!} {!! Form::text('name', $business->name, ['class' => 'form-control', 'required', 'placeholder' => __('business.business_name')]); !!}
{!! Form::label('start_date', __('business.start_date') . ':') !!}
{!! Form::text('start_date', @format_date($business->start_date), ['class' => 'form-control start-date-picker','placeholder' => __('business.start_date'), 'readonly']); !!}
{!! Form::label('default_profit_percent', __('business.default_profit_percent') . ':*') !!} @show_tooltip(__('tooltip.default_profit_percent'))
{!! Form::text('default_profit_percent', @num_format($business->default_profit_percent), ['class' => 'form-control input_number']); !!}
{!! Form::label('currency_id', __('business.currency') . ':') !!}
{!! Form::select('currency_id', $currencies, $business->currency_id, ['class' => 'form-control select2','placeholder' => __('business.currency'), 'required']); !!}
{!! Form::label('currency_symbol_placement', __('lang_v1.currency_symbol_placement') . ':') !!} {!! Form::select('currency_symbol_placement', ['before' => __('lang_v1.before_amount'), 'after' => __('lang_v1.after_amount')], $business->currency_symbol_placement, ['class' => 'form-control select2', 'required']); !!}
{!! Form::label('time_zone', __('business.time_zone') . ':') !!}
{!! Form::select('time_zone', $timezone_list, $business->time_zone, ['class' => 'form-control select2', 'required']); !!}
{!! Form::label('business_logo', __('business.upload_logo') . ':') !!} {!! Form::file('business_logo', ['accept' => 'image/*']); !!}

@lang('business.logo_help')

{!! Form::label('fy_start_month', __('business.fy_start_month') . ':') !!} @show_tooltip(__('tooltip.fy_start_month'))
{!! Form::select('fy_start_month', $months, $business->fy_start_month, ['class' => 'form-control select2', 'required']); !!}
{!! Form::label('accounting_method', __('business.accounting_method') . ':*') !!} @show_tooltip(__('tooltip.accounting_method'))
{!! Form::select('accounting_method', $accounting_methods, $business->accounting_method, ['class' => 'form-control select2', 'required']); !!}
{!! Form::label('transaction_edit_days', __('business.transaction_edit_days') . ':*') !!} @show_tooltip(__('tooltip.transaction_edit_days'))
{!! Form::number('transaction_edit_days', $business->transaction_edit_days, ['class' => 'form-control','placeholder' => __('business.transaction_edit_days'), 'required']); !!}
{!! Form::label('date_format', __('lang_v1.date_format') . ':*') !!}
{!! Form::select('date_format', $date_formats, $business->date_format, ['class' => 'form-control select2', 'required']); !!}
{!! Form::label('time_format', __('lang_v1.time_format') . ':*') !!}
{!! Form::select('time_format', [12 => __('lang_v1.12_hour'), 24 => __('lang_v1.24_hour')], $business->time_format, ['class' => 'form-control select2', 'required']); !!}
{!! Form::label('currency_precision', __('lang_v1.currency_precision') . ':*') !!} @show_tooltip(__('lang_v1.currency_precision_help')) {!! Form::select('currency_precision', [0 =>0, 1=>1, 2=>2, 3=>3,4=>4], $business->currency_precision, ['class' => 'form-control select2', 'required']); !!}
{!! Form::label('quantity_precision', __('lang_v1.quantity_precision') . ':*') !!} @show_tooltip(__('lang_v1.quantity_precision_help')) {!! Form::select('quantity_precision', [0 =>0, 1=>1, 2=>2, 3=>3,4=>4], $business->quantity_precision, ['class' => 'form-control select2', 'required']); !!}
{{-- code --}}
{!! Form::label('code_label_1', __('lang_v1.code_1_name') . ':') !!}
{!! Form::text('code_label_1', $business->code_label_1, ['class' => 'form-control']); !!}
{!! Form::label('code_1', __('lang_v1.code_1') . ':') !!}
{!! Form::text('code_1', $business->code_1, ['class' => 'form-control']); !!}
{!! Form::label('code_label_2', __('lang_v1.code_2_name') . ':') !!}
{!! Form::text('code_label_2', $business->code_label_2, ['class' => 'form-control']); !!}
{!! Form::label('code_2', __('lang_v1.code_2') . ':') !!}
{!! Form::text('code_2', $business->code_2, ['class' => 'form-control']); !!}