{!! Form::label($locale.'[slug]', 'URL *', ['class' => 'control-label']) !!}
{!! Form::text($locale.'[slug]', $post->translateOrNew($locale)->slug, ['class' => 'form-control']) !!}
@if($errors->has($locale.'.slug'))
{{ $errors->first($locale.'.slug') }}
@endif
{!! Form::label($locale.'[meta_title]', 'Meta naslov', ['class' => 'control-label']) !!}
{!! Form::text($locale.'[meta_title]', $post->translateOrNew($locale)->meta_title, ['class' => 'form-control']) !!}
@if($errors->has($locale.'.meta_title'))
{{ $errors->first($locale.'.meta_title') }}
@endif
{!! Form::label($locale.'[meta_description]', 'Meta opis', ['class' => 'control-label']) !!}
{!! Form::textarea($locale.'[meta_description]', $post->translateOrNew($locale)->meta_description, ['class' => 'form-control']) !!}
@if($errors->has($locale.'.meta_description'))
{{ $errors->first($locale.'.meta_description') }}
@endif