mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-22 04:30:32 +09:00
12 lines
274 B
PHP
12 lines
274 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
|
|
{{ html()->form('POST', route('items.store'))->id('itemform')->acceptsFiles()->open() }}
|
|
@include('items.form')
|
|
{{ html()->form()->close() }}
|
|
|
|
@endsection
|
|
@section('scripts')
|
|
@include('items.scripts')
|
|
@endsection |