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

Add Dimensions of the product(in cm)

@if(isset($size)) {!! Form::model($size, ['method' => 'PATCH', 'action' => ['CarpetSizeController@update', $size->idSize], 'class' => 'form-horizontal']) !!} @else {!! Form::open(['url' => 'dimensions', '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 Dimensions of the product

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