@extends('admin.layout.master') @section('content-header') Add Contact @stop @section('content') {{ csrf_field() }} Title @if ($errors->has('title')) {{ $errors->first('title') }} @endif Description @if ($errors->has('description')) {{ $errors->first('description') }} @endif Phone No @if ($errors->has('phone_no')) {{ $errors->first('phone_no') }} @endif Contact Email @if ($errors->has('contact_email')) {{ $errors->first('contact_email') }} @endif Address @if ($errors->has('address')) {{ $errors->first('address') }} @endif @stop @section('javascript') @stop