@if(empty($signature_field_displayed))
{!! Form::text('fullname', $lead->fullname ?? '', [ 'placeholder' => 'Full name', 'class' => 'form-control', 'maxlength' => 120]) !!}
@endif
{!! Form::text('adr[line1]', $address->address_line_1 ?? '', [ 'placeholder' => '1st line of address', 'class' => 'form-control', 'maxlength' => 240]) !!}
{!! Form::text('adr[line2]', $address->address_line_2 ?? '', [ 'placeholder' => '2nd line of address', 'class' => 'form-control', 'maxlength' => 240]) !!}
{!! Form::text('adr[city]', $address->city ?? '', [ 'placeholder' => 'City / Town', 'class' => 'form-control', 'id' => 'adr_city', 'maxlength' => 120]) !!}
{!! Form::text('adr[state]', $address->county ?? '', [ 'placeholder' => 'County / Region', 'class' => 'form-control', 'id' => 'adr_county', 'maxlength' => 120]) !!}
{!! Form::text('adr[postal_code]', $address->postcode ?? '', [ 'placeholder' => 'Postcode', 'class' => 'form-control', 'id' => 'adr_postcode', 'maxlength' => 12]) !!}