@extends('layouts.admin') @section('page-title') {{ __('Manage Languages') }} @endsection @section('multiple-action-button')
{{ __('Create') }}
@if($lang != (env('DEFAULT_LANG') ?? 'en'))
{{__('Delete')}} {!! Form::open(['method' => 'DELETE', 'route' => ['admin.lang.destroy', $lang],'id'=>'delete-form-'.$lang]) !!} {!! Form::close() !!}
@endif @endsection @section('content')
@csrf
@foreach($arrLabel as $label => $value)
@endforeach
@foreach($arrMessage as $fileName => $fileValue)
{{ucfirst($fileName)}}
@foreach($fileValue as $label => $value) @if(is_array($value)) @foreach($value as $label2 => $value2) @if(is_array($value2)) @foreach($value2 as $label3 => $value3) @if(is_array($value3)) @foreach($value3 as $label4 => $value4) @if(is_array($value4)) @foreach($value4 as $label5 => $value5)
@endforeach @else
@endif @endforeach @else
@endif @endforeach @else
@endif @endforeach @else
@endif @endforeach
@endforeach
@endsection