@extends('layouts.admin') @section('content')
Blog > Nuevo
@if ($errors->any())
Por favor corrige los errores debajo:
@endif
Nuevo Post

{!! Form::open(['route' => ['blog.store'], 'method' => 'POST']) !!}
{!! Form::label('name', 'Nombre:') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('title')) {{ $errors->first('name') }} @endif
{{--
{!! Form::label('label', 'Color (Titulo):') !!} {!! Form::color('label', null, ['class' => 'form-control', 'required']) !!} @if ($errors->has('label')) {{ $errors->first('label') }} @endif
--}}

{!! Form::close() !!}
@endsection