@extends('admin.layout') @section('content')
@csrf
{{ __('Update Currency') }}
@if ($errors->has('base_currency_symbol'))

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

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

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

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

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

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

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

@endif
{{ __('1 USD =') }}
{{ $data->base_currency_text }}
@if ($errors->has('base_currency_rate'))

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

@endif
@endsection