@extends('layouts.main') @section('breadcrumbs') {{ Breadcrumbs::render(request()->route()->getName()) }} @endsection @section('content')
@csrf @if(isset($currency->id)) @method('PUT') @endif

{{ isset($currency->id) ? 'Edit' : 'Tambah' }} Currency

@error('code') {{ $message }} @enderror
@error('name') {{ $message }} @enderror
@error('symbol') {{ $message }} @enderror
@error('decimal_places') {{ $message }} @enderror
@if(isset($currency->id)) @can('basic-data.update') @endcan @else @can('basic-data.create') @endcan @endif
@endsection