From cf0548bd1f81f7666a1f26732120f3b943c98dad Mon Sep 17 00:00:00 2001 From: snipe Date: Fri, 6 May 2022 05:11:52 -0700 Subject: [PATCH] Create a new partial for asset bulk actions Signed-off-by: snipe --- .../partials/asset-bulk-actions.blade.php | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 resources/views/partials/asset-bulk-actions.blade.php diff --git a/resources/views/partials/asset-bulk-actions.blade.php b/resources/views/partials/asset-bulk-actions.blade.php new file mode 100644 index 000000000..4a24a34ce --- /dev/null +++ b/resources/views/partials/asset-bulk-actions.blade.php @@ -0,0 +1,22 @@ +
+ {{ Form::open([ + 'method' => 'POST', + 'route' => ['hardware/bulkedit'], + 'class' => 'form-inline', + 'id' => 'bulkForm']) }} + + + + + + + {{ Form::close() }} +
\ No newline at end of file