@if(!config('constants.disable_purchase_in_other_currency', true))
{!! Form::label('purchase_currency_id', __('purchase.purchase_currency') . ':') !!}
{!! Form::select('purchase_currency_id', $currencies, $business->purchase_currency_id, ['class' => 'form-control select2', 'placeholder' => __('business.currency'), 'required', 'style' => 'width:100% !important']); !!}
{!! Form::label('p_exchange_rate', __('purchase.p_exchange_rate') . ':') !!}
{!! Form::number('p_exchange_rate', $business->p_exchange_rate, ['class' => 'form-control', 'placeholder' => __('business.p_exchange_rate'), 'required', 'step' => '0.001']); !!}
@endif