@extends('layouts.admin') @section('title', 'Edit Currency: ' . $currency->name) @section('content')

Edit Currency: {{ $currency->name }}

Back to Currencies
@csrf @method('PUT')
code == 'KES' ? 'readonly' : '' }}>
3-letter ISO currency code
@error('code')
{{ $message }}
@enderror
@error('name')
{{ $message }}
@enderror
Currency symbol (e.g., $, €, £)
@error('symbol')
{{ $message }}
@enderror
Number of decimal places (0-6)
@error('decimal_places')
{{ $message }}
@enderror
active) ? 'checked' : '' }}>
Inactive currencies won't be available for calculations
@if($currency->code == 'KES')
Base Currency: This is the base currency (KES). Some settings cannot be modified.
@endif
Cancel
Currency Statistics
Total Exchange Rates
{{ $currency->exchangeRates()->count() }}
Active Exchange Rates
{{ $currency->exchangeRates()->where('is_active', true)->count() }}
Latest Rate Update
@if($currency->latestRate) {{ $currency->latestRate->effective_date->format('M j, Y') }} @else Never @endif
Created
{{ $currency->created_at->format('M j, Y') }}
Quick Actions
View Details Add Exchange Rate @if($currency->code != 'KES')
@csrf @method('DELETE')
@endif
@endsection