Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<div class="form-group"> <label>{{ $label }}</label> <select class="form-control {..
Decoded Output download
<? <div class="form-group">
<label>{{ $label }}</label>
<select class="form-control {{$class}}" style="width: 100%;" name="{{$name}}[]" {!! $attributes !!} multiple data-placeholder="{{ $label }}">
<option value=""></option>
@foreach($options as $select => $option)
<option value="{{$select}}" {{ in_array($select, old($column, $value) ?: []) ? 'selected' : '' }}>{{$option}}</option>
@endforeach
</select>
@include('admin::actions.form.help-block')
</div>
?>
Did this file decode correctly?
Original Code
<div class="form-group">
<label>{{ $label }}</label>
<select class="form-control {{$class}}" style="width: 100%;" name="{{$name}}[]" {!! $attributes !!} multiple data-placeholder="{{ $label }}">
<option value=""></option>
@foreach($options as $select => $option)
<option value="{{$select}}" {{ in_array($select, old($column, $value) ?: []) ? 'selected' : '' }}>{{$option}}</option>
@endforeach
</select>
@include('admin::actions.form.help-block')
</div>
Function Calls
None |
Stats
MD5 | ffdfa676576d72fe46ba87e8bf3baeb1 |
Eval Count | 0 |
Decode Time | 98 ms |