Prime-Chat/resources/views/news/create.blade.php

13 lines
372 B
PHP
Raw Normal View History

2024-12-19 07:21:23 +04:00
<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>