10 lines
268 B
PHP
10 lines
268 B
PHP
|
@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
|