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/manufacturers/table.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.manufacturers.store') }}" onsubmit="return false">
|
|
|
|
<div class="dynamic-form-row">
|
2024-09-25 12:48:05 -07:00
|
|
|
@include('partials.forms.edit.name', ['item' => new \App\Models\Manufacturer(), 'translated_name' => trans('admin/manufacturers/table.name')])
|
2018-01-20 00:42:29 -08:00
|
|
|
</div>
|
|
|
|
</form>
|
2017-12-19 20:30:46 -08:00
|
|
|
</div>
|
2024-09-25 12:48:05 -07:00
|
|
|
<div class="dynamic-form-row">
|
|
|
|
@include('modals.partials.footer')
|
2017-12-19 20:30:46 -08:00
|
|
|
</div>
|
|
|
|
</div><!-- /.modal-content -->
|
|
|
|
</div><!-- /.modal-dialog -->
|