@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.currency.title_singular') }}
@csrf
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif

{{ trans('cruds.currency.fields.name_helper') }}

@if($errors->has('code'))

{{ $errors->first('code') }}

@endif

{{ trans('cruds.currency.fields.code_helper') }}

@if($errors->has('main_currency'))

{{ $errors->first('main_currency') }}

@endif

{{ trans('cruds.currency.fields.main_currency_helper') }}

@endsection