@extends('layouts.admin.app') @section('css') @endsection @section('content')
@if ($errors->any())
{{trans('common.whoops')}}
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ trans('admin.currency_details')}}

@can('currency-list') {{ trans('common.back') }} @endcan
@error('name') {{ @$errors->first('name') }} @enderror
@error('symbol') {{ @$errors->first('symbol') }} @enderror
@error('price') {{ @$errors->first('price') }} @enderror
@endsection @section('js') @endsection