@extends('layout')
@section('title', 'Contact')
@section('content')
@if(session('customer_id'))
@endif
@if (session()->has('success'))
Success! {{ session()->get('success') }}.
@endif
@if (session()->has('error'))
Error! {{ session()->get('error') }}.
@endif
{{ __('text.enquiry') }}
@endsection