mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
10 lines
345 B
PHP
10 lines
345 B
PHP
@extends('layouts/edit-form', [
|
|
'createText' => 'Create kit',
|
|
'updateText' => 'Update kit',
|
|
'formAction' => ($item) ? route('kits.update', ['kit' => $item->id]) : route('kits.store'),
|
|
])
|
|
|
|
{{-- Page content --}}
|
|
@section('inputFields')
|
|
@include ('partials.forms.edit.name', ['translated_name' => 'Name']) {{-- TODO: trans --}}
|
|
@stop |