Migrate Form::open and Form::close on unaccepted assets report page

This commit is contained in:
Marcus Moore 2025-02-12 12:49:19 -08:00
parent d32163f881
commit 2949fdecdd
No known key found for this signature in database

View file

@ -19,10 +19,10 @@
@endif
</div>
<div class="btn-group mr-2" role="group">
{{ Form::open(['method' => 'post', 'class' => 'form-horizontal']) }}
<form method="POST" action="{{ route('reports/export/unaccepted_assets') }}" accept-charset="UTF-8" class="form-horizontal">
{{csrf_field()}}
<button type="submit" class="btn btn-default"><i class="fa fa-download icon-white" aria-hidden="true"></i> {{ trans('general.download_all') }}</button>
{{ Form::close() }}
</form>
</div>
</div>
@stop