{!!Form::open( array('url'=>route('products.store'),'method'=>'POST','autocomplete'=>'off') )!!} {{Form::token()}}

Nuevo Producto

@if (count($errors)>0)
    @foreach ($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
{!! Form::select('category_id', $categoriesList, null, ['class'=>'custom-select d-block w-100']) !!}
{!! Form::select('sub_category_id', $subCategoriesList, null, ['class'=>'custom-select d-block w-100']) !!}
{!! Form::select('und_med', $measurementsList, null, ['class'=>'custom-select d-block w-100']) !!}
{!! Form::select('format_id', $formatsList, null, ['class'=>'custom-select d-block w-100']) !!}
{!! Form::select('visualitations', $visualitations, null, ['class'=>'custom-select d-block w-100']) !!}
    @foreach ($characteristics as $characteristic)
  • {{$characteristic->file_name}} {{ $characteristic->name }}
  • @endforeach
{!!Form::close()!!}