13 lines
372 B
PHP
13 lines
372 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.store') }}" method="POST">
|
||
|
@csrf
|
||
|
@include('news.form')
|
||
|
</form>
|
||
|
</x-app-layout>
|