Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 5, 2020 18:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/23b69b81a8cec57ecbcf0b26267b9f68 to your computer and use it in GitHub Desktop.
Save parzibyte/23b69b81a8cec57ecbcf0b26267b9f68 to your computer and use it in GitHub Desktop.
@extends("maestra")
@section("titulo", "Editar nivel")
@section("contenido")
<div class="row">
<div class="col-12">
<form method="POST" action="{{route("niveles.update", [$nivel])}}">
@method("PUT")
@csrf
<div class="form-group">
<label class="label">Nombre</label>
<input required value="{{$nivel->nombre}}" autocomplete="off" name="nombre" class="form-control"
type="text" placeholder="Nombre">
</div>
@include("notificacion")
<button class="btn btn-success">Guardar</button>
<a class="btn btn-primary" href="{{route("niveles.index")}}">Volver</a>
</form>
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment