{!! Form::label('category_id', 'Kategorija *', ['class' => 'control-label']) !!} {!! Form::select('category_id', $categories, null, ['class' => 'form-control']) !!} @if($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@foreach($locales as $locale)
{!! Form::label($locale.'[title]', 'Naslov *', ['class' => 'control-label']) !!} {!! Form::text($locale.'[title]', $product->translateOrNew($locale)->title, ['class' => 'form-control']) !!} @if($errors->has($locale.'.title')) {{ $errors->first($locale.'.title') }} @endif
{!! Form::label($locale.'[content]', 'Sadržaj *', ['class' => 'control-label']) !!} {!! Form::textarea($locale.'[content]', $product->translateOrNew($locale)->content, ['class' => 'form-control tinymce']) !!} @if($errors->has($locale.'.content')) {{ $errors->first($locale.'.content') }} @endif
@endforeach
{!! Form::submit('Spremi', ['class' => 'btn btn-primary']) !!} {!! link_to_route('admin.product.index', 'Natrag', null, ['class' => 'btn btn-default']) !!}
@section('scripts') @endsection