@foreach($locales as $locale)
{!! Form::label($locale.'[title]', 'Naslov *', ['class' => 'control-label']) !!}
{!! Form::text($locale.'[title]', $floor->translateOrNew($locale)->title, ['class' => 'form-control']) !!}
@if($errors->has($locale.'.title'))
{{ $errors->first($locale.'.title') }}
@endif
@endforeach