@extends('layouts.admin') @section('content')
Edit Contact Info
{{ csrf_field() }}
@if ($errors->has('companyname'))

{{$errors->first('companyname')}}

@endif
@if ($errors->has('phone'))

{{$errors->first('phone')}}

@endif
@if ($errors->has('email'))

{{$errors->first('email')}}

@endif
@if($errors->has('address'))

{{$errors->first('address')}}

@endif
Back
@endsection