mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Fixed improper html nesting
This commit is contained in:
parent
c1b0b8dee2
commit
6f71abd0e0
|
@ -21,11 +21,16 @@
|
|||
|
||||
@section('content')
|
||||
|
||||
<!-- row -->
|
||||
<div class="row">
|
||||
<!-- col-md-8 -->
|
||||
<div class="col-md-8 col-md-offset-2">
|
||||
|
||||
<form id="create-form" class="form-horizontal" method="post" action="{{ (isset($formAction)) ? $formAction : \Request::url() }}" autocomplete="off" role="form" enctype="multipart/form-data">
|
||||
|
||||
<!-- box -->
|
||||
<div class="box box-default">
|
||||
<!-- box-header -->
|
||||
<div class="box-header with-border">
|
||||
|
||||
<h3 class="box-title" style="min-height: 20px;">
|
||||
|
@ -48,6 +53,7 @@
|
|||
@endif
|
||||
</div><!-- /.box-header -->
|
||||
|
||||
<!-- box-body -->
|
||||
<div class="box-body">
|
||||
|
||||
@if ($item->id)
|
||||
|
@ -59,10 +65,11 @@
|
|||
@yield('inputFields')
|
||||
@include('partials.forms.edit.submit')
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div> <!-- ./box-body -->
|
||||
</div> <!-- box -->
|
||||
</form>
|
||||
</div> <!-- col-md-8 -->
|
||||
|
||||
</div><!-- ./row -->
|
||||
|
||||
@stop
|
||||
|
|
Loading…
Reference in a new issue