Title
{!! Form::text('title', $package_info->title ?? '',
['id' => 'title', 'class' => 'form-control']) !!}
{{ $errors->first('title') }}
Tagline
{!! Form::text('tagline', $package_info->tagline ?? '',
['id' => 'tagline', 'class' => 'form-control']) !!}
{{ $errors->first('tagline') }}
Description (Business as usual)
{!! Form::textarea('Description BAU', $package_info->description_bau ?? '', [
'class' => 'form-control',
'placeholder' => 'Description BAU',
'rows' => 3,
'name' => 'description_bau'
]) !!}
{{ $errors->first('description_bau') }}
Description (Voucher)
{!! Form::textarea('Description Voucher', $package_info->description_voucher ?? '', [
'class' => 'form-control',
'placeholder' => 'Description Voucher',
'rows' => 3,
'name' => 'description_voucher'
]) !!}
{{ $errors->first('description_voucher') }}
{!! 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']) !!}
Is standard? (shown to address not within our areas)
{!! Form::select('is_standard', [0 => 'No', 1 => 'Yes'], null, ['id' => 'is_standard-select']) !!}