Name
{!! Form::text('name', $area_info->name ?? '',
['id' => 'name', 'class' => '']) !!}
{{ $errors->first('name') }}
Postcodes included in this area. You may enter full postcodes or just the first half. separate with commas
{!! Form::text('postcodes', $area_info->postcodes ?? '',
['id' => 'postcodes', 'class' => '']) !!}
{{ $errors->first('postcodes') }}
Postcodes installing if a new signup postcode matches, the customer will be able to book an install separate with commas
{!! Form::text('postcodes_installing', $area_info->postcodes_installing ?? '',
['id' => 'postcodes_installing', 'class' => '']) !!}
{{ $errors->first('postcodes_installing') }}
Voucher UPRN's a list of all the UPRN's inside this area that are part of an approved voucher scheme. separate with commas
If left empty the system will assume all UPRN's that match a postcode in this area are within a voucher project.
{!! Form::textarea('voucher_uprns', $area_info->voucher_uprns ?? '', [
'class' => 'form-control',
'placeholder' => 'voucher uprns',
'rows' => 8,
'name' => 'voucher_uprns'
]) !!}
{{ $errors->first('voucher_uprns') }}
Description think about SEO when writing this.
{!! Form::textarea('description', $area_info->description ?? '', [
'class' => 'form-control',
'placeholder' => 'Description',
'rows' => 8,
'name' => 'description'
]) !!}
{{ $errors->first('description') }}
PRP number
{!! Form::text('prp_number', $area_info->prp_number ?? '',
['id' => 'prp_number', 'class' => '']) !!}
{{ $errors->first('prp_number') }}
max_residential_value
{!! Form::text('max_residential_value',
$area_info->max_residential_value ?? 0,
['id' => 'max_residential_value', 'class' => '']) !!}
{{ $errors->first('max_residential_value') }}
max_business_value
{!! Form::text('max_business_value',
$area_info->max_business_value ?? 0,
['id' => 'max_business_value', 'class' => '']) !!}
{{ $errors->first('max_business_value') }}
priority
{!! Form::number('priority',
$area_info->priority ?? 0,
['id' => 'priority', 'class' => '']) !!}
{{ $errors->first('priority') }}
Expected live date
@php
$live_date = null;
if(!empty($area_info->live_date)){
$live_date = $area_info->live_date->format('Y-m-d\TH:m');
}
@endphp
{!! Form::datetimeLocal('live_date', $live_date) !!}
Booking slots available from (Customers won’t be presented with slots before this date)
@php
$survey_slot_start = null;
if(!empty($area_info->survey_slot_start)){
$survey_slot_start = $area_info->survey_slot_start->format('Y-m-d\TH:m');
}
@endphp
{!! Form::datetimeLocal('survey_slot_start', $survey_slot_start) !!}
Booking day range (how many days the booking calendar spans ahead)
{!! Form::number('survey_slot_range',
$area_info->survey_slot_range ?? 0,
['id' => 'survey_slot_range', 'class' => '']) !!}
{{ $errors->first('survey_slot_range') }}
Booking slot capacity (how bookings can be made per slot)
{!! Form::number('survey_slot_capacity',
$area_info->survey_slot_capacity ?? 0,
['id' => 'survey_slot_capacity', 'class' => '']) !!}
{{ $errors->first('survey_slot_capacity') }}
State what stage of progress are we within this area.
{!! Form::select('state', $states, null, ['id' => 'state-select']) !!}