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

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