@extends('layouts.theme') @section('title',__('Contact Us')) @section('main-wrapper')

@if(Session::has('success'))
{{__('Success')}} : {{ Session::get('success') }}
@endif

{{__('Contact')}} {{__('Us')}}


{{__('Contact Detail')}}
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('subj')) {{ $errors->first('subj') }} @endif
@if ($errors->has('msg')) {{ $errors->first('msg') }} @endif

@endsection