@extends('templates/admin') @section('titulo')

Editar Post Edite o Post!

@stop @section('menu-noticias') active @stop @section('breadcrumbs')
  • Home
  • Post
  • Editar Post
  • @stop @section('styles') @stop @section('conteudo')
    @if ( count($errors) > 0)
    Erros encontrados:
      @foreach ($errors->all() as $e)
    • {{ $e }}
    • @endforeach
    @endif
    @if(old('id') != null) {!! Form::open( ['route' => ['posts.update', 'id' => old('id'), 'subdominio' => Route::input('subdominio') ] , 'method' => 'PUT', 'class'=>'form',] ) !!} @else {!! Form::open( ['route' => ['posts.store', 'subdominio' => Route::input('subdominio') ] , 'method' => 'POST', 'class'=>'form'] ) !!} @endif
    {!! Form::label('titulo', 'Título') !!} {!! Form::text('titulo', old('titulo'), ['class'=>'form-control']) !!}
    {!! Form::label('link_permanente', 'Url Amigável') !!} {!! Form::text('link_permanente', old('link_permanente'), ['class'=>'form-control']) !!}
    {!! Form::label('texto', 'Texto') !!}

    Cancelar
    {!! Form::close() !!}
    @stop