{{-- Amount Input --}}
@error('amount')
{{ $message }}
@enderror
{{-- From Currency Select --}}
@error('fromCurrency')
{{ $message }}
@enderror
{{-- To Currency Select --}}
@error('toCurrency')
{{ $message }}
@enderror
{{-- Convert Button Moved Here --}}
{{-- Result Display --}} @if (!is_null($result) && is_null($error))
{{ number_format((float)$amount, 2) }} {{ $fromCurrency }} = {{ number_format((float)$result, 4) }} {{ $toCurrency }}
{{-- Add a hidden input for easy copying of the full result string if needed --}} @endif {{-- Error Display --}} @if ($error)
{{ $error }}
@endif {{-- Loading Indicator for Currencies --}}
@lang('webtools/tools/currency-converter.loading_currencies')
@lang('webtools/tools/currency-converter.loading_currencies')
@push('page_scripts') @endpush