rename 'enabled' to 'active'

This commit is contained in:
Nabeel Shahzad
2017-06-08 20:46:50 -05:00
parent 3678363766
commit 0cb98f1920
10 changed files with 28 additions and 33 deletions

View File

@@ -10,12 +10,12 @@
{!! Form::text('name', null, ['class' => 'form-control']) !!}
</div>
<!-- Enabled Field -->
<!-- Active Field -->
<div class="form-group col-sm-6">
{!! Form::label('enabled', 'Enabled:') !!}
{!! Form::label('active', 'Active:') !!}
<label class="checkbox-inline">
{!! Form::hidden('enabled', false) !!}
{!! Form::checkbox('enabled', 'True', null) !!} 1
{!! Form::hidden('active', false) !!}
{!! Form::checkbox('active', 'True', null) !!} 1
</label>
</div>