@extends('layouts.website') @section('title', 'Contact Us') @section('content') Store information {{$basicinfo->address}} Call us: {{$basicinfo->phone}} Email us: {{$basicinfo->email}} @csrf @if ($errors->has('name')) {{ $errors->first('name') }} @endif @if ($errors->has('email')) {{ $errors->first('email') }} @endif @if ($errors->has('subject')) {{ $errors->first('subject') }} @endif {{old('message')}} @if ($errors->has('message')) {{ $errors->first('message') }} @endif Send Message @endsection