{{-- --}} {{ trans('theme.button.contact_seller') }}

{!! Form::open(['route' => ['seller.contact', $item->shop->slug], 'data-toggle' => 'validator']) !!} {!! Form::hidden('product_id', $item->id) !!}
{!! Form::label('subject', trans('theme.subject') . '*') !!} {!! Form::text('subject', null, ['class' => 'form-control input-lg', 'placeholder' => trans('theme.placeholder.contact_us_subject'), 'required']) !!}
{!! Form::label('message', trans('theme.write_your_message') . '*') !!} {!! Form::textarea('message', null, ['class' => 'form-control', 'rows' => '4', 'placeholder' => trans('theme.placeholder.message'), 'required']) !!}
@if (config('services.recaptcha.key'))
@endif
{!! Form::close() !!}
* {{ trans('theme.help.required_fields') }}