@extends('admin.layout') @section('content')

{{ __('Contact Page') }}

{{ __('Contact Info') }}

@csrf

{{ __('The first entered number will show in the header top menu & Service Page.') }} @if ($errors->has('number'))

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

@endif

{{ __('The first entered email will show in the header top menu.') }} @if ($errors->has('email'))

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

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

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

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

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

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

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

@endif
@endsection