radio.blade.php 375 B

1234567891011121314
  1. <div class="{{$viewClass['form-group']}} {!! !$errors->has($errorKey) ? '' : 'has-error' !!}" >
  2. <label for="{{$id}}" class="{{$viewClass['label']}} control-label">{!! $label !!}</label>
  3. <div class="{{$viewClass['field']}}" id="{{ $id }}">
  4. @include('admin::form.error')
  5. {!! $radio !!}
  6. @include('admin::form.help-block')
  7. </div>
  8. </div>