@extends('layouts.clivax') @section('title', 'Edit Currency: ' . $currency->code) @section('content')
Edit Currency: {{ $currency->code }}
@include('currencies.currency-form', [ 'currency' => $currency, 'action' => route('currencies.update', $currency->id), 'method' => 'PUT' ])
@endsection