@extends('adminlte::page') @section('title', __('title.edit_translation')) @section('content_top_nav_right') @endsection @section('content_header') @stop @section('plugins.Flag', true) @section('plugins.Pace', true) @section('plugins.Toastr', true) @section('plugins.Sweetalert2', true) @section('content')
@method('PUT') @csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@error('key')
{{ $message }}
@enderror
@foreach($text as $index => $value)
{{ strtoupper($index) }}
@error('translation')
{{ $message }}
@enderror @endforeach
@stop @push('js') @include('layouts.partials._notification') @include('layouts.partials._switch_lang') @include('admin.translations._script') @endpush @section('footer') @include('layouts.partials._footer') @stop