@if(isset($color))
{!! Form::model($color, ['method' => 'post']) !!}
@else
{!! Form::open(['method' => 'post']) !!}
@endif
{!! Form::label('color', 'Color')!!}
{!! Form::text('title', null, ['class' => 'form-control', 'id' => 'color']) !!}
{!! Form::label('text', 'Text')!!}
{!! Form::text('text', null, ['class' => 'form-control', 'id' => 'text']) !!}
{!! Form::token(); !!}
{!! Form::close()!!}