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') }}
Areas
{!! Form::select('', $areas, null, ['id' => 'area-select']) !!}
Priority
{!! Form::number('priority', $package_info->priority ?? 0, ['id' => 'priority', 'class' => '']) !!}
Speed (down)
{!! Form::number('down_speed', $package_info->down_speed ?? 0, ['id' => 'down_speed', 'class' => '']) !!}
Speed (up)
{!! Form::number('up_speed', $package_info->up_speed ?? 0, ['id' => 'up_speed', 'class' => '']) !!}
Months
{!! Form::number('months', $package_info->months ?? 0, ['id' => 'months', 'class' => '']) !!}
Price pm
{!! Form::number('price', $package_info->price ?? 0, ['id' => 'price', 'class' => '', 'step' => 'any']) !!}
Installation price
{!! Form::number('installation', $package_info->installation ?? 0, ['id' => 'installation', 'class' => '', 'step' => 'any']) !!}
Activation price
{!! Form::number('activation', $package_info->activation ?? 0, ['id' => 'activation', 'class' => '', 'step' => 'any']) !!}
Static IP price (negative number = not included)
{!! Form::number('static_ip', $package_info->static_ip ?? 0, ['id' => 'static_ip', 'class' => '']) !!}
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']) !!}