@extends('layouts.layout-2') @section('content')
@foreach($files as $fl)
{{ $fl }}
@endforeach
@if($translations) {!! Form::open([ 'url' => route('admin_translate_file_update', [$file, $language, $langsource, $show]), 'method' => 'post', 'class' => 'form-horizontal' ]) !!}


@foreach($translations as $key => $value) @include('translation.translation_row', [ 'key' => $key, 'value' => $value, 'language'=> $language, 'parent' => null, 'prefix' => $prefix, 'langsource' => $langsource, 'show' => $show, ]) @endforeach
{!! Form::close() !!} @endif
@endsection