DEV Community

William Olsen
William Olsen

Posted on

Help Me With This Code

Hello Guys, I have a problem with my script, I have classified site,and when someone want create listing he has option to add his website, but the problem here when he adds the site, the link its not clickable, i saw the code but didn't understand anything, can u pls help me

{{-- url --}}
<div class="row mb-3 {{ $requiredClass }}">
<label class="col-md-3 col-form-label" for="{{ $fieldId }}">
{{ $field->name }}
@if ($field->required == 1)
<sup>*</sup>
@endif
</label>
<div class="col-md-8">
<input id="{{ $fieldId }}"
name="{{ $fieldName }}"
type="text"
placeholder="{{ $field->name }}"
class="form-control input-md{{ $errorClass }}"
value="{{ $defaultValue }}">
<div class="form-text text-muted">{!! $field->help !!}</div>
</div>
</div>

Top comments (1)

Collapse
 
rajasekharguptha profile image
Rajasekhar Guptha

can u present more detailed code i.e what are those variables , blocks etc..?