@extends('layouts.app-general') @section('content')

ENTRADAS AL BLOG

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif
@if(isset($web_blog_entry))
@else @endif

@if(!isset($web_blog_entry)) Agregar entrada @elseif(strstr(Request::url(), "view")) Ver entrada @else Editar entrada @endif

@if ($errors->has('courier_id')) {{ $errors->first('courier_id') }} @endif
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
@if ($errors->has('body')) {{ $errors->first('body') }} @endif
@if ($errors->has('keywords')) {{ $errors->first('keywords') }} @endif
@if ($errors->has('css')) {{ $errors->first('css') }} @endif
@if ($errors->has('scripts')) {{ $errors->first('scripts') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif

@if(!isset($web_blog_entry)) Agregar SEO @elseif(strstr(Request::url(), "view")) Ver SEO @else Editar SEO @endif

@if ($errors->has('meta_description')) {{ $errors->first('meta_description') }} @endif
@if ($errors->has('meta_keywords')) {{ $errors->first('meta_keywords') }} @endif
Volver atras
@endsection