logo, improved listing, some helpers, mail confirms table, confirmed flag, user title column..
This commit is contained in:
@@ -3,19 +3,36 @@
|
||||
@endphp
|
||||
|
||||
<div class="row form-group">
|
||||
<label for="field-{{ $w->name }}" class="col-md-{{$w->labelCols}} col-form-label text-md-right">{{ $w->label }}</label>
|
||||
<label for="field-{{ $w->name }}" class="col-md-{{$w->labelCols}} col-form-label text-md-right">
|
||||
{{ $w->label }}
|
||||
@include('form._help', ['mobile' => true])
|
||||
</label>
|
||||
<div class="col-md-{{$w->fieldCols}}">
|
||||
<input id="field-{{ $w->name }}"
|
||||
name="{{ $w->name }}"
|
||||
class="form-control{{ $errors->has($w->name) ? ' is-invalid' : '' }}"
|
||||
value="{{ $w->value }}"
|
||||
{!! $w->attributes !!}>
|
||||
<div class="input-group">
|
||||
@if($w->prepend)
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">{{$w->prepend}}</span>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if ($errors->has($w->name))
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $errors->first($w->name) }}</strong>
|
||||
</span>
|
||||
@endif
|
||||
<input id="field-{{ $w->name }}"
|
||||
name="{{ $w->name }}"
|
||||
class="form-control{{ $errors->has($w->name) ? ' is-invalid' : '' }}"
|
||||
value="{{ $w->value }}"
|
||||
{!! $w->attributes !!}>
|
||||
|
||||
@if($w->append)
|
||||
<div class="input-group-append">
|
||||
<span class="input-group-text">{{$w->append}}</span>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if ($errors->has($w->name))
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $errors->first($w->name) }}</strong>
|
||||
</span>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
@include('form._help')
|
||||
@include('form._help', ['mobile' => false])
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user