14 lines
431 B
PHP
14 lines
431 B
PHP
<x-app-layout>
|
|
<x-slot name="header">
|
|
<h2 class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
|
|
{{ __('Редактировать новость') }}
|
|
</h2>
|
|
</x-slot>
|
|
|
|
<form class="max-w-sm mx-auto" action="{{ route('news.update', ['news' => $news->id]) }}" method="POST">
|
|
@csrf
|
|
@method('PUT')
|
|
@include('news.form')
|
|
</form>
|
|
</x-app-layout>
|