@push('styles') @endpush
{{ Form::radio('type', 'multifamily', isset($result) && isset($result->type) && $result->type == 'multifamily' ? true : null, ['id' => 'perc', 'class' => '', 'autocomplete' => 'off']) }}
{{ Form::radio('type', 'workforce', isset($result) && isset($result->type) && $result->type == 'workforce' ? true : null, ['id' => 'dolr', 'class' => '', 'autocomplete' => 'off']) }}
{{ Form::radio('type', 'commerical', isset($result) && isset($result->type) && $result->type == 'commerical' ? true : null, ['id' => 'dolr1', 'class' => '', 'autocomplete' => 'off']) }}
{{ Form::radio('type', 'singlefamily', isset($result) && isset($result->type) && $result->type == 'singlefamily' ? true : null, ['id' => 'dolr2', 'class' => '', 'autocomplete' => 'off']) }}
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
{{ Form::text('name', null, ['id' => 'name', 'class' => 'form-control']) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ Form::text('year', null, ['id' => 'year', 'class' => 'form-control','placeholder'=>'YYYY']) }} @if ($errors->has('year'))

{{ $errors->first('year') }}

@endif

sq. ft.

{{ Form::text('floorarea', null, ['id' => 'floorarea', 'class' => 'form-control']) }} @if ($errors->has('floorarea')) {{ $errors->first('floorarea') }} @endif
{{ Form::text('company', null, ['id' => 'company', 'class' => 'form-control']) }} @if ($errors->has('company')) {{ $errors->first('company') }} @endif
{{ Form::text('location', null, ['id' => 'location', 'class' => 'form-control']) }} @if ($errors->has('location')) {{ $errors->first('location') }} @endif
{{ Form::textarea('description', null, ['id' => 'description', 'class' => 'form-control']) }} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
@if ($errors->has('image'))

{{ $errors->first('image') }}

@endif
Save as Draft
@push('js') @endpush