@extends('backend.layouts.form') @section('title', activeTheme() . ' ' . admin_trans('theme') . ' ' . $language->name . ' ' . 'translates') @section('section', admin_trans('Settings')) @section('back', route('admin.settings.languages.index')) @section('content')
{{ admin_trans('Important!') }}
  • {{ admin_trans('Translates may not take effect immediately, you may need to refresh the page multiple times or clear the cache.') }}
  • {{ 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
    @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('scripts_libs') @endpush @push('scripts') @endpush @endsection