mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Migrate Form::open and Form::close on branding settings pagee
This commit is contained in:
parent
8bdd80e236
commit
d141675478
|
@ -21,7 +21,17 @@
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
{{ Form::open(['method' => 'POST', 'files' => true, 'autocomplete' => 'off', 'class' => 'form-horizontal', 'role' => 'form', 'id' => 'create-form' ]) }}
|
<form
|
||||||
|
method="POST"
|
||||||
|
action="{{ route('settings.branding.save') }}"
|
||||||
|
accept-charset="UTF-8"
|
||||||
|
autocomplete="off"
|
||||||
|
class="form-horizontal"
|
||||||
|
role="form"
|
||||||
|
id="create-form"
|
||||||
|
enctype="multipart/form-data"
|
||||||
|
novalidate="novalidate"
|
||||||
|
>
|
||||||
<!-- CSRF Token -->
|
<!-- CSRF Token -->
|
||||||
{{csrf_field()}}
|
{{csrf_field()}}
|
||||||
|
|
||||||
|
@ -341,7 +351,7 @@
|
||||||
</div> <!-- /.col-md-8-->
|
</div> <!-- /.col-md-8-->
|
||||||
</div> <!-- /.row-->
|
</div> <!-- /.row-->
|
||||||
|
|
||||||
{{Form::close()}}
|
</form>
|
||||||
|
|
||||||
@stop
|
@stop
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue