Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<style> .quick-create .select2-selection--single { padding: 3px 12px !importan..

Decoded Output download

<?  <style>
    .quick-create .select2-selection--single {
        padding: 3px 12px !important;
        height: 30px !important;
        width: 150px !important;
    }
</style>

<div class="input-group input-group-sm">
    <select class="form-control {{$class}}" style="width: 100%;" name="{{$name}}" {!! $attributes !!} >

        <option value=""></option>
        @foreach($options as $select => $option)
            <option value="{{$select}}" {{ $select == old($column, $value) ?'selected':'' }}>{{$option}}</option>
        @endforeach
    </select>
</div>

 ?>

Did this file decode correctly?

Original Code

<style>
    .quick-create .select2-selection--single {
        padding: 3px 12px !important;
        height: 30px !important;
        width: 150px !important;
    }
</style>

<div class="input-group input-group-sm">
    <select class="form-control {{$class}}" style="width: 100%;" name="{{$name}}" {!! $attributes !!} >

        <option value=""></option>
        @foreach($options as $select => $option)
            <option value="{{$select}}" {{ $select == old($column, $value) ?'selected':'' }}>{{$option}}</option>
        @endforeach
    </select>
</div>

Function Calls

None

Variables

None

Stats

MD5 100d84538b5f8ac76b537fe6e046f19e
Eval Count 0
Decode Time 91 ms