Title {!! Form::text('title', $product_info->title ?? '', ['id' => 'title', 'class' => 'form-control']) !!} {{ $errors->first('title') }}
Tagline {!! Form::text('tagline', $product_info->tagline ?? '', ['id' => 'tagline', 'class' => 'form-control']) !!} {{ $errors->first('tagline') }}
Description {!! Form::textarea('Description', $product_info->description ?? '', [ 'class' => 'form-control', 'placeholder' => 'Description', 'rows' => 3, 'name' => 'description' ]) !!} {{ $errors->first('description') }}
Areas
{!! Form::select('', $areas, null, ['id' => 'area-select']) !!}
Priority
{!! Form::number('priority', $product_info->priority ?? 0, ['id' => 'priority', 'class' => '']) !!}
Price
{!! Form::number('price', $product_info->price ?? 0, ['id' => 'price', 'class' => '', 'step' => 'any']) !!}
Type {!! Form::select('type', $types, null, ['id' => 'type-select']) !!}
State {!! Form::select('state', $states, null, ['id' => 'state-select']) !!}