Skip to content

Instantly share code, notes, and snippets.

@FernandoBasso
Created October 16, 2017 20:17
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 FernandoBasso/210b5e895fe3e58d3b3b29bac775f105 to your computer and use it in GitHub Desktop.
Save FernandoBasso/210b5e895fe3e58d3b3b29bac775f105 to your computer and use it in GitHub Desktop.
@extends('admin.admin-layout')
@section('title', 'Cadastrar Nova Postagem')
@section('content')
<div class="crud posts edit">
{{-- This doesn't show up either if the Form is there --}}
what the fuck?
{{-- This is not rendered at all --}}
@include('admin.posts.crud-actions-header')
{{-- If I remove this, then it works --}}
{!! Form::model($post, ['method' => 'PATCH', 'route' => ['posts.update', $post->id]]) !!}
@include('admin.posts.form')
{!! Form::close() !!}
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment