@extends('layouts.theme') @section('title',__('staticwords.contactus')) @section('main-wrapper')

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

{{__('staticwords.contact')}} {{__('staticwords.us')}}


{{__('staticwords.contactdetail')}}
{{ 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