22 lines
468 B
PHP
22 lines
468 B
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
|
|
<x-dashboard.breadcumb :title="$title" />
|
|
|
|
|
|
{{ html()->modelForm($content, 'PUT')->route('content.update', $content->id)->class(['needs-validation'])->attributes(['novalidate', 'enctype' => 'multipart/form-data'])->open() }}
|
|
|
|
@include('content::content.partials.action')
|
|
|
|
{{ html()->closeModelForm() }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
@endsection
|
|
|
|
|