@extends('layouts.app') @section('content')

{!! Form::open(array('url'=>'ebaycategoryspecifics/save?return='.$return, 'class'=>'form-horizontal','files' => true , 'parsley-validate'=>'','novalidate'=>' ')) !!}
eBay Category Specifics
{!! Form::text('id', $row['id'],array('class'=>'form-control', 'placeholder'=>'', )) !!}
{!! Form::text('valueMode', $row['valueMode'],array('class'=>'form-control', 'placeholder'=>'', )) !!}
{!! Form::text('valueCustomAttribute', $row['valueCustomAttribute'],array('class'=>'form-control', 'placeholder'=>'', )) !!}
{!! Form::text('valueCustomValue', $row['valueCustomValue'],array('class'=>'form-control', 'placeholder'=>'', )) !!}
{!! Form::text('specificName', $row['specificName'],array('class'=>'form-control', 'placeholder'=>'', )) !!}
{!! Form::text('created_at', $row['created_at'],array('class'=>'form-control datetime', 'style'=>'width:150px !important;')) !!}
{!! Form::text('updated_at', $row['updated_at'],array('class'=>'form-control datetime', 'style'=>'width:150px !important;')) !!}
{!! Form::close() !!}
@stop