Skip to content

Commit 1ede573

Browse files
committed
Fixed missing 'checked' parameter for form checkboxes and radios
1 parent c0ee2a5 commit 1ede573

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

snippets/Form Checkbox.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<snippet>
22
<content><![CDATA[
3-
{!! Form::checkbox(${1:\$name}, ${2:\$value}, [${3}]) !!}
3+
{!! Form::checkbox(${1:\$name}, ${2:\$value}, ${3:\$checked}, [${4}]) !!}
44
]]></content>
55
<tabTrigger>formcheckbox</tabTrigger>
66
<scope>text.blade</scope>

snippets/Form Radio.sublime-snippet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<snippet>
22
<content><![CDATA[
3-
{!! Form::radio(${1:\$name}, ${2:\$value}, [${3}]) !!}
3+
{!! Form::radio(${1:\$name}, ${2:\$value}, ${3:\$checked}, [${4}]) !!}
44
]]></content>
55
<tabTrigger>formradio</tabTrigger>
66
<scope>text.blade</scope>

0 commit comments

Comments
 (0)