{!! Form::open(['url' => action([\Modules\MultiCurrency\Http\Controllers\MultiCurrencyController::class, 'store']), 'method' => 'post', 'id' => 'multicurrency_add_form' ]) !!}

@lang( 'multicurrency::lang.add_currency_rate' ):

{!! Form::label('currency_id', __('multicurrency::lang.currency') . ':') !!} {!! Form::select('currency_id', $currencies, null, ['class' => 'form-control select2', 'placeholder' => __('multicurrency::lang.currency'), 'required']); !!}
{!! Form::label('exchange_rate', __('multicurrency::lang.exchange_rate') . ':') !!} @show_tooltip(__('multicurrency::lang.tooltip_currency_exchange_factor')) {!! Form::number('exchange_rate', null, ['class' => 'form-control', 'placeholder' => __('multicurrency::lang.exchange_rate'), 'step' => '0.001']); !!}
{!! Form::close() !!}