1
I have a form where I add it to the create.blade.php page and Edit.blade.php page
more when I will specify the element does not appear the tag <form></form>
More when I remove the @include('Dashboard.usuario.formulario') it appears in the source code of the page the form. Anyone has any idea why of this?
Behold:
@extends('dashboard')
@section('content')
{!! Form::model($user, ['route' => ['user.update', $user->id] , 'method' => 'post']) !!}
@include('dashboard.usuario.formulario')
{!Form::close()!}
@stop
As I said, when I take back @include it works again. showing in the source code my form tag <form>
.