@extends('admin.layout.master') @section('content-header') Add Cms @stop @section('content') {{ csrf_field() }} Title @if ($errors->has('title')) {{ $errors->first('title') }} @endif Slug @if ($errors->has('slug')) {{ $errors->first('slug') }} @endif Description @if ($errors->has('description')) {{ $errors->first('description') }} @endif Meta Title @if ($errors->has('meta_title')) {{ $errors->first('meta_title') }} @endif Meta Description @if ($errors->has('meta_description')) {{ $errors->first('meta_description') }} @endif Meta Keywords @if ($errors->has('meta_keywords')) {{ $errors->first('meta_keywords') }} @endif @endsection @section('javascript') @stop