@extends('admin.layout') @section('content')

{{ __('Currency') }}

{{ __('Add Currency') }}

@csrf
@if ($errors->has('name'))

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

@endif
@if ($errors->has('sign'))

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

@endif
@if ($errors->has('value'))

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

@endif
@endsection