Change html to double quotes

This commit is contained in:
Joseph Cohen
2015-01-06 15:44:27 -06:00
parent 561a2207ae
commit fd8e4f7fa9
34 changed files with 297 additions and 291 deletions
@@ -14,7 +14,7 @@
<div class="row">
<div class="col-sm-12">
@if($group = Session::get('group'))
<div class='alert alert-{{ $group->isValid() ? "success" : "danger" }}'>
<div class="alert alert-{{ $group->isValid() ? 'success' : 'danger' }}">
@if($group->isValid())
{{ sprintf("<strong>%s</strong> %s", trans('dashboard.notifications.awesome'), trans('dashboard.components.groups.add.success')) }}
@else
@@ -23,11 +23,11 @@
</div>
@endif
<form name='CreateComponentGroupForm' class='form-vertical' role='form' action='/dashboard/components/groups/add' method='POST'>
<form name="CreateComponentGroupForm" class="form-vertical" role="form" action="/dashboard/components/groups/add" method="POST">
<fieldset>
<div class='form-group'>
<label for='incident-name'>{{ trans('forms.components.groups.name') }}</label>
<input type='text' class='form-control' name='group[name]' id='group-name' required />
<div class="form-group">
<label for="incident-name">{{ trans('forms.components.groups.name') }}</label>
<input type="text" class="form-control" name="group[name]" id="group-name" required />
</div>
</fieldset>