@foreach($locales as $locale)
{!! Form::label($locale.'[title]', 'Naslov *', ['class' => 'control-label']) !!}
{!! Form::text($locale.'[title]', $post->translateOrNew($locale)->title, ['class' => 'form-control']) !!}
@if($errors->has($locale.'.title'))
{{ $errors->first($locale.'.title') }}
@endif
{!! Form::label($locale.'[summary]', 'Sažetak *', ['class' => 'control-label']) !!}
{!! Form::textarea($locale.'[summary]', $post->translateOrNew($locale)->summary, ['class' => 'form-control']) !!}
@if($errors->has($locale.'.summary'))
{{ $errors->first($locale.'.summary') }}
@endif
{!! Form::label($locale.'[content]', 'Sadržaj *', ['class' => 'control-label']) !!}
{!! Form::textarea($locale.'[content]', $post->translateOrNew($locale)->content, ['class' => 'form-control tinymce']) !!}
@if($errors->has($locale.'.content'))
{{ $errors->first($locale.'.content') }}
@endif
@endforeach