@extends('layouts.main.app') @section('head') @include('layouts.main.headersection',[ 'title'=> __('Edit Language'), 'buttons'=>[ [ 'name'=>' '.__('Add Translation Key'), 'url'=>'#', 'components'=>'data-toggle="modal" data-target="#addRecord" id="add_record"', 'is_button'=>true ], [ 'name'=> __('Back'), 'url'=>route('admin.language.index'), ] ] ]) @endsection @section('content')

{{ __('Languages') }}

@csrf @method('PUT')
@foreach($posts ?? [] as $key => $value) @endforeach
{{ __('Translation Key') }} {{ __('Translated Value') }}
{{ $key }}
@endsection