26 lines
741 B
PHP
Executable File
26 lines
741 B
PHP
Executable File
|
|
@extends('layouts.main')
|
|
|
|
@section('title')
|
|
{{ $title }}
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="">
|
|
<form class="flex column" width="50px" method="POST" action="new">
|
|
@csrf
|
|
<x-forms.inputs.text label="Honeycomb Name" name="name" />
|
|
<input id="description" type="hidden" name="description">
|
|
<livewire:trix />
|
|
<div class="flex column formGroup">
|
|
<label for="dueDate"> Due Date</label>
|
|
<input id="dueDate" type="date" rows="10" name="dueDate"></input>
|
|
</div>
|
|
<livewire:assign-to />
|
|
<button type="submit" class="primary">Submit</button>
|
|
</form>
|
|
</div>
|
|
@endsection
|
|
<script>
|
|
</script>
|