2018-01-20 00:42:29 -08:00
|
|
|
{{-- See snipeit_modals.js for what powers this --}}
|
2017-12-19 20:30:46 -08:00
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span></button>
|
2021-11-23 18:28:10 -08:00
|
|
|
<h2 class="modal-title">{{ trans('admin/categories/general.create') }}</h2>
|
2017-12-19 20:30:46 -08:00
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
2018-01-20 00:42:29 -08:00
|
|
|
<form action="{{ route('api.categories.store') }}" onsubmit="return false">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
<div class="alert alert-danger" id="modal_error_msg" style="display:none">
|
2017-12-19 20:30:46 -08:00
|
|
|
</div>
|
2024-09-09 16:34:04 -07:00
|
|
|
@include('modals.partials.name')
|
2018-01-20 00:42:29 -08:00
|
|
|
<input type="hidden" name='category_type' id="modal-category_type" value="{{ request('category_type') }}" />
|
|
|
|
</form>
|
2017-12-19 20:30:46 -08:00
|
|
|
</div>
|
2024-09-09 16:34:04 -07:00
|
|
|
@include('modals.partials.footer')
|
2017-12-19 20:30:46 -08:00
|
|
|
</div><!-- /.modal-content -->
|
|
|
|
</div><!-- /.modal-dialog -->
|