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

Attributes Management


@if (count($errors) > 0)
Whoops! There were some problems with your input.

@endif
{!! Form::model($attributes, ['method' => 'PATCH','route' => ['attributes.update', $attributes->id] ]) !!}
{!! Form::text('attribute_name', null, array('placeholder' => 'Attribute Name','class' => 'form-control name')) !!}
{!! Form::close() !!} @endsection