@if(Helper::GeneralSiteSettings("style_subscribe"))

  {{ trans('frontLang.newsletter') }}

{{ trans('frontLang.subscribeToOurNewsletter') }}

 {{ trans('frontLang.subscribeToOurNewsletterDone') }}
{{ trans('frontLang.youMessageNotSent') }}
{{Form::open(['route'=>['Home'],'method'=>'POST','class'=>'subscribeForm'])}}
{!! Form::text('subscribe_name',"", array('placeholder' => trans('frontLang.yourName'),'class' => 'form-control','id'=>'subscribe_name', 'data-msg'=> trans('frontLang.enterYourName'),'data-rule'=>'minlen:4')) !!}
{!! Form::email('subscribe_email',"", array('placeholder' => trans('frontLang.yourEmail'),'class' => 'form-control','id'=>'subscribe_email', 'data-msg'=> trans('frontLang.enterYourEmail'),'data-rule'=>'email')) !!}
{{Form::close()}}
@endif