mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-22 04:30:32 +09:00
12 lines
332 B
PHP
12 lines
332 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
|
|
{!! Form::model($item, ['data-item-id' =>$item->id, 'method' => 'PATCH', 'id' => 'itemform', 'files' => true, 'route' => ['items.update', $item->id]]) !!}
|
|
@include('items.form')
|
|
{!! Form::close() !!}
|
|
|
|
@endsection
|
|
@section('scripts')
|
|
@include('items.scripts')
|
|
@endsection |