Transfer create and edit currency rate styling..
This commit is contained in:
		@@ -25,11 +25,11 @@
 | 
			
		||||
                    <div class="d-none w-100" :class="[{'d-flex' : show_rate}]">
 | 
			
		||||
                        {!! Form::hidden('from_currency_code', $transfer->from_currency_code, ['id' => 'from_currency_code', 'v-model' => 'form.from_currency_code']) !!}
 | 
			
		||||
 | 
			
		||||
                        {{ Form::textGroup('from_account_rate', trans('transfers.from_account_rate'), 'sliders-h', [], $transfer->from_account_rate) }}
 | 
			
		||||
                        {{ Form::textGroup('from_account_rate', trans('transfers.from_account_rate'), 'sliders-h', [':disabled' => "form.from_currency_code == '" . setting('default.currency') . "'"], $transfer->from_account_rate) }}
 | 
			
		||||
 | 
			
		||||
                        {!! Form::hidden('to_currency_code', $transfer->to_currency_code, ['id' => 'to_currency_code', 'v-model' => 'form.to_currency_code']) !!}
 | 
			
		||||
 | 
			
		||||
                        {{ Form::textGroup('to_account_rate', trans('transfers.to_account_rate'), 'sliders-h', [], $transfer->to_account_rate) }}
 | 
			
		||||
                        {{ Form::textGroup('to_account_rate', trans('transfers.to_account_rate'), 'sliders-h', [':disabled' => "form.to_currency_code == '" . setting('default.currency') . "'"], $transfer->to_account_rate) }}
 | 
			
		||||
                    </div>
 | 
			
		||||
 | 
			
		||||
                    {{ Form::moneyGroup('amount', trans('general.amount'), 'money-bill-alt', ['required' => 'required', 'currency' => $currency, 'dynamic-currency' => 'currency'], $transfer->amount) }}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user