initial commit
This commit is contained in:
15
resources/views/contacts/create.blade.php
Normal file
15
resources/views/contacts/create.blade.php
Normal file
@@ -0,0 +1,15 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="mb-6">
|
||||
<h1 class="text-2xl font-semibold">New Contact</h1>
|
||||
<p class="mt-1 text-sm text-zinc-600">Add a new contact to your list.</p>
|
||||
</div>
|
||||
|
||||
<div class="rounded-lg border border-zinc-200 bg-white p-6">
|
||||
<form method="post" action="{{ route('contacts.store', $searchQueryParams ?? []) }}">
|
||||
@csrf
|
||||
@include('contacts.partials.form', ['submitLabel' => 'Create'])
|
||||
</form>
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user