@extends('admin.master1') @section('title','Publisher Update') @section('pageTitle') @endsection @section('mainContend')
{!! Form::open(['url'=>'updatePublisherById','method'=>'POST','class'=>'form-horizontal','name'=>'employee']) !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('contact_no')) {{ $errors->first('contact_no') }} @endif
{!! Form::close() !!}
@endsection