@extends('layouts.app') @section('content')

Edit Currency

Currency Information

@csrf @method('PUT')
ISO 4217 currency code (3 characters) @error('code') {{ $message }} @enderror
@error('symbol') {{ $message }} @enderror
@error('name') {{ $message }} @enderror
Number of decimal places for this currency (typically 2) @error('decimal_places') {{ $message }} @enderror
is_active) ? 'checked' : '' }}>

Currency Details

Code: {{ $currency->code }}
Symbol: {{ $currency->symbol }}
Decimal Places: {{ $currency->decimal_places }}
Status: @if($currency->is_active) Active @else Inactive @endif
Created: {{ $currency->created_at->format('M d, Y') }}
@endsection