@extends('main') @section('content')

Add Weight of the product (in gms)

@if(isset($knot)) {!! Form::model($knot, ['method' => 'PATCH', 'action' => ['KnotPerSquareController@update', $knot->idKnot], 'class' => 'form-horizontal']) !!} @else {!! Form::open(['url' => 'product-weight', 'class' => 'form-horizontal']) !!} @endif
{!! Form::text('name',null,['class' => 'form-control','minlength'=>'2','maxlength'=>'80','autocomplete'=>'off']) !!} @if($errors->has('name'))

{{ $errors->first('name') }}

@endif
{!! Form::submit('SAVE',['class' => 'btn btn-raised btn-primary btn-round waves-effect']) !!} {!! Form::close() !!}

List Of Weight of the product (in gms)

@foreach($knots as $var) @endforeach
S.No. Name Action
{{ $i }} {{ $var->name }} Edit Delete
@stop @section('script') @stop