Просмотр поста

.
L!MP

Blade, вёрстка просто адовая, по этому и код, вот такой:

$(document).ready(function() {
    $("form input[type='radio']").change(function() {
		$("form div").find( $("input[type='radio']").next("label") ).removeClass("active");
        $(this).next("label").toggleClass("active");
    });
});