Created
December 6, 2019 20:59
-
-
Save NandoKstroNet/98e6df4bc119f4af9088052508b2b2cd to your computer and use it in GitHub Desktop.
Tela de edição curso Laravel 6 Criando um Marketplace em http://codeexperts.com.br
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('layouts.app') | |
@section('content') | |
<h1>Atualizar Categoria</h1> | |
<form action="{{route('admin.categories.update', ['category' => $category->id])}}" method="post"> | |
@csrf | |
@method("PUT") | |
<div class="form-group"> | |
<label>Nome</label> | |
<input type="text" name="name" class="form-control @error('name') is-invalid @enderror" value="{{$category->name}}"> | |
@error('name') | |
<div class="invalid-feedback"> | |
{{$message}} | |
</div> | |
@enderror | |
</div> | |
<div class="form-group"> | |
<label>Descrição</label> | |
<input type="text" name="description" class="form-control" value="{{$category->description}}"> | |
</div> | |
<div class="form-group"> | |
<label>Slug</label> | |
<input type="text" name="slug" class="form-control" value="{{$category->slug}}"> | |
</div> | |
<div> | |
<button type="submit" class="btn btn-lg btn-success">Atualizar Categoria</button> | |
</div> | |
</form> | |
@endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment