@extends('layouts.admin') @section('content') Content Add {{ csrf_field() }} Title @if ($errors->has('title')) {{ $errors->first('title') }} @endif Slug @if ($errors->has('slug')) {{ $errors->first('slug') }} @endif Body @if(old('body')) {{old('body')}} @endif Meta Info: Title Description Robot {{ Form::select('meta_info[robot]', [1 => 'Yes', 0 => 'No'],'', ['class' => 'form-control']) }} Add @endsection @section('script')