forms/content/index.blade.php

10 lines
268 B
PHP
Raw Normal View History

2023-11-29 03:36:10 +00:00
@extends("template.{$template}.content.layout")
@section("title", "Forms")
@section("content")
<form action="">
<div>
<label for="nome">Nome</label>
<input type="text" id="nome" class="form-control">
</div>
</form>
@stop