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') }}
{!! Form::select('', $areas, null, ['id' => 'area-select']) !!}
Type
{!! Form::select('type', $types, null, ['id' => 'type-select']) !!}
State
{!! Form::select('state', $states, null, ['id' => 'state-select']) !!}