se me habia olvidado ponerle article a los forms de admin

This commit is contained in:
Daniel Cortés
2019-10-16 12:19:33 -03:00
parent 5a1923299a
commit e30bb7a059
5 changed files with 82 additions and 74 deletions

View File

@@ -5,6 +5,7 @@
@endsection
@section('content')
<article>
<form class="pure-form pure-form-stacked" action="{{ route('admin.now.save') }}" method="post">
@csrf
<fieldset>
@@ -20,5 +21,5 @@
</div>
</fieldset>
</form>
</article>
@endsection

View File

@@ -5,6 +5,7 @@
@endsection
@section('content')
<article>
<form class="pure-form pure-form-stacked" action="{{ route('admin.now.update', ['now' => $now->id]) }}" method="post">
@csrf
<fieldset>
@@ -20,4 +21,5 @@
</div>
</fieldset>
</form>
</article>
@endsection

View File

@@ -5,6 +5,7 @@
@endsection
@section('content')
<article>
<form action="{{ route('admin.project.save') }}" enctype="multipart/form-data" class="pure-form pure-form-stacked" method="post">
@csrf
<fieldset>
@@ -23,5 +24,5 @@
</div>
</fieldset>
</form>
</article>
@endsection

View File

@@ -5,6 +5,7 @@
@endsection
@section('content')
<article>
<form class="pure-form pure-form-stacked" action="{{ route('admin.project.update', ['project' => $project->id]) }}" method="post">
@csrf
<fieldset>
@@ -23,4 +24,5 @@
</div>
</fieldset>
</form>
</article>
@endsection

View File

@@ -5,6 +5,7 @@
@endsection
@section('content')
<article>
<form class="pure-form pure-form-stacked" action="{{ route('admin.setup.save') }}" method="post">
@csrf
<fieldset>
@@ -23,4 +24,5 @@
</div>
</fieldset>
</form>
</article>
@endsection