Project create ready

This commit is contained in:
Александр Бабкин
2022-06-28 09:49:25 +03:00
parent e8e132051a
commit 44f24c5dae
4 changed files with 37 additions and 32 deletions

View File

@@ -9,8 +9,8 @@
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
<div class="p-6 bg-white border-b border-gray-200">
<x-validation-error class="mb-4" :errors="$errors" />
<form method="POST" action="{{ route('users.store') }}">
<x-label class="mb-4" :errors="$errors" />
<form method="POST" action="{{ route('projects.store') }}">
@csrf
<!-- Project name -->
<div>

View File

@@ -23,6 +23,9 @@
<th class="p-2 border border-gray-200">
{{ __('Comment')}}
</th>
<th class="p-2 border border-gray-200">
{{ __('MMC Path')}}
</th>
<th class="p-2 border border-gray-200">
{{ __('Actions')}}
</th>
@@ -31,6 +34,7 @@
<tr class="border border-gray-200">
<td class="p-2 border border-gray-200">{{ $project->name }}</td>
<td class="p-2 border border-gray-200">{{ $project->description }}</td>
<td class="p-2 border border-gray-200">{{ $project->mmc_path }}</td>
<td class="p-2 border border-gray-200">&nbsp;</td>
</tr>
@empty