@extends('layouts.admin') @section('title') @lang('Edit Language') @endsection @section('breadcrumb')

@lang('Edit Language')

@lang('Back')
@endsection @section('content')
{{ __('Edit Language Form') }}
@csrf @method('PUT')
@php $i = 0; @endphp @forelse ($lang as $key => $value) @empty @endforelse
@lang('Sl') @lang('Key') @lang('Value') @lang('Action')
{{ ++$i }} {{ Str::limit($key, 60) }} {{ Str::limit($value, 40) }}
@lang('No Data Found')
@endsection @push('script') @endpush