Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created March 1, 2019 16:51
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/ed9ecd8306c3f0a837bfd8b8a1f7e7ba to your computer and use it in GitHub Desktop.
Save parzibyte/ed9ecd8306c3f0a837bfd8b8a1f7e7ba to your computer and use it in GitHub Desktop.
@extends("principal")
@section("titulo", "Agregar canción")
@section("contenido")
<h1>Agregar canción</h1>
<form method="POST" action="{{ route('agregarCancion') }}">
@csrf
<input autocomplete="off" required type="text" name="nombre" placeholder="Nombre de la canción">
<br><br>
<input autocomplete="off" required type="text" name="artista" placeholder="Artista que la canta">
<br><br>
<input autocomplete="off" required type="text" name="album" placeholder="Álbum">
<br><br>
<input autocomplete="off" required type="number" name="anio" placeholder="Año">
<br><br>
<input type="submit" value="Guardar">
</form>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment