@component('components.widget', ['class' => 'box-solid'])
{!! Form::label('m_currency_id', __('multicurrency::lang.currency') . ':') !!}
{!! Form::select('m_currency_id', $currencies, $currency_transaction->currency_id ?? null, ['class' => 'form-control select2', 'placeholder' => __('multicurrency::lang.currency'), 'style' => 'width:100% !important']); !!}
{!! Form::label('m_exchange_rate', __('multicurrency::lang.exchange_rate') . ':') !!} @show_tooltip(__('multicurrency::lang.tooltip_currency_exchange_factor'))
{!! Form::number('m_exchange_rate', $currency_transaction->exchange_rate ?? null, ['class' => 'form-control', 'placeholder' => __('multicurrency::lang.exchange_rate'), 'step' => '0.001', 'readonly' => 'readonly']); !!}
@endcomponent