uff muchas cosas, agrege projecto y setup
This commit is contained in:
@@ -9,16 +9,16 @@
|
||||
@csrf
|
||||
<fieldset>
|
||||
<h1>Add Project</h1>
|
||||
<a class="pure-button button-black-white" href="{{ route('admin.project.index') }}">Volver</a>
|
||||
<a class="pure-button button-black-white" href="{{ route('admin.project.index') }}">Back</a>
|
||||
|
||||
<label for="title">Titulo</label>
|
||||
<label for="title">Title</label>
|
||||
<input type="text" id="title" name="title" required/>
|
||||
|
||||
<label for="md">Descripcion</label>
|
||||
<label for="md">Description</label>
|
||||
<textarea id="md" name="md"></textarea>
|
||||
|
||||
<div class="control">
|
||||
<button class="pure-button button-black-white" type="submit">Crear</button>
|
||||
<button class="pure-button button-black-white" type="submit">Create</button>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
@@ -9,16 +9,16 @@
|
||||
@csrf
|
||||
<fieldset>
|
||||
<h1>Edit Project</h1>
|
||||
<a href="{{ route('admin.project.index') }}" class="pure-button button-black-white">Volver</a>
|
||||
<a href="{{ route('admin.project.index') }}" class="pure-button button-black-white">Back</a>
|
||||
|
||||
<label for="title">Titulo</label>
|
||||
<label for="title">Title</label>
|
||||
<input type="text" class="form-input" id="title" name="title" value="{{ old('title', $project->title) }}" required/>
|
||||
|
||||
<label for="md">Descripcion</label>
|
||||
<label for="md">Description</label>
|
||||
<textarea class="form-input" id="md" name="md">{{ old('md', $project->md) }}</textarea>
|
||||
|
||||
<div class="control">
|
||||
<button type="submit" class="pure-button button-black-white">Actualizar</button>
|
||||
<button type="submit" class="pure-button button-black-white">Back</button>
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Id</th>
|
||||
<th>Titulo</th>
|
||||
<th>Fecha</th>
|
||||
<th>Title</th>
|
||||
<th>Date</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
Reference in New Issue
Block a user