Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created February 5, 2020 18:21
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/95e12a5effb7f4e59f00a5cfeae44915 to your computer and use it in GitHub Desktop.
Save parzibyte/95e12a5effb7f4e59f00a5cfeae44915 to your computer and use it in GitHub Desktop.
@extends("maestra")
@section("titulo", "Registrar nivel")
@section("contenido")
<div class="row">
<div class="col-12">
<form method="POST" action="{{route("niveles.store")}}">
@csrf
<div class="form-group">
<label class="label">Nombre</label>
<input required 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 al listado</a>
</form>
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment