@extends('translation::layout') @section('body')
{{ __('translation::translation.add_translation') }}
{!! Form::open(['action' => route('languages.translations.store', $language), 'class' => 'form-horizontal', 'id'=>'']) !!}
{{ Form::text('group', '', array('placeholder'=> __('translation::translation.group_placeholder'),'class'=>'form-control', 'id'=>'group')) }}
{{ Form::text('key', '', array('placeholder'=> __('translation::translation.key_placeholder'),'class'=>'form-control', 'id'=>'key')) }}
{{ Form::text('value', '', array('placeholder'=> __('translation::translation.value_placeholder'), 'class'=>'form-control', 'id'=>'value')) }}
{{ Form::text('namespace', '', array('placeholder'=> __('translation::translation.namespace_placeholder'), 'class'=>'form-control', 'id'=>'namespace')) }}
 
{!! Form::close() !!}
@endsection