@extends('layouts.app') @section('content') @php $canEditLanguage = auth()->check() && auth()->user()->hasPermission('languages', 'edit'); @endphp

JSON Key / Value List
Key Value Actions
@php $oldKeys = old('key', ['']); $oldValues = old('value', ['']); if (!is_array($oldKeys) || count($oldKeys) === 0) { $oldKeys = ['']; } if (!is_array($oldValues) || count($oldValues) === 0) { $oldValues = ['']; } $rowCount = max(count($oldKeys), count($oldValues), 1); @endphp @if($errors->has('key') || $errors->has('value') || old('key') || old('value') || old('original_key')) @endif @if($errors->has('csv_file')) @endif @endsection