@extends('admin.layouts.form') @section('section', admin_trans('Settings')) @section('title', admin_trans('Translates')) @section('content')
{{ admin_trans('Important!') }}
{{ admin_trans('There are some words that should not be translated that start with some tags or are inside a tag') }} {{ admin_trans(':value, :seconds, :min, ::max, {username}') }} {{ admin_trans('etc...') }}
@csrf
@if (is_array($translates) && count($translates) > 0) @foreach ($translates as $key1 => $value1) @if (is_array($value1))

{{ $key1 }}

@foreach ($value1 as $key2 => $value2)
@endforeach @else
@endif @endforeach @else

{{ admin_trans('No translations found') }}

@endif
@push('styles_libs') @endpush @push('scripts_libs') @endpush @push('scripts') @endpush @endsection