Current File : //home/tradevaly/new.tradevaly.com.bd/resources/views/frontend/pages/events.blade.php
@extends('frontend.layouts.app')
@push('css')
    
@endpush

@section('content')
<div class="container">
    <div class="row">
        <div class="main-container">
            <h2 class="c-heading main-heading multi-heading">{{ translate('Connect With') }} 
            @if(!empty($product->supplier))
            <span>{{$product->supplier->name}}</span>
            @endif
            {{ translate('About') }}</h2>
                <div class="col-xs-12 col-sm-12 col-md-8 left-container">
                        <div class="inline-blocks row justify-content-center">
                            <div class="col-lg-10 text-center">
                                
                                <img src="{{asset('storage/images/admin/show/'.$product->image)}}" alt="{{$product->title}}">
                            </div>
                            <div class="right-container">
                                <h4 class="c-heading heading-rfq">{{ translate($product->title) }}</h4>
                                @if(!empty($product->supplier))
                                <h6 class="sub-heading">
                                     {{ translate($product->supplier->name) }}</h6>
                                      <h6 class="sub-heading"><i class="fi fi fi-{{ strtolower($product->supplier->user->country->iso) }}"> </i>
                                    {{ translate($product->supplier->user->country->nicename) }}
                                </h6>
                                @endif
                            </div>
                        </div>
                    </div>
            <div class="col-xs-12 col-sm-12 col-md-8 left-container fleft">
                  <div class="form-container">
                    <form method="POST" action="{{route('company.contact', $product->slug)}}" accept-charset="UTF-8" id="rfq-form" class="uploader" enctype="multipart/form-data">
                        @csrf
                        <div class="form-group">
                            <input class="form-control p-track" placeholder="Tell us what you want to buy *" id="want_buy" name="subject" type="text" value="@if(!empty($title)) Contacting About {{$title}} @endif" required>
                        </div>
                        <div class="form-group">
                            <textarea class="form-control rfq-txt p-track" id="buyoffer_description" name="details" cols="50" rows="10" required></textarea>
                        </div>
                        <div class="clearfix"></div>
                        <div class="clearfix"></div>
                        <button type="submit" class="btn btn-post-rfq">{{ translate('Submit') }}</button>
                    </form>
                </div>
            </div>
            <div class="col-xs-12 col-sm-12 col-md-4 right-container fleft">
                <nav class="progressbar_nav navbar affix-top border__radius__0" data-spy="affix" data-offset-top="197">
                    <h2 class="c-heading main-heading multi-heading heading-progress">{{ translate('Quality of RFQ') }}</h2>
                    <div class="progress">
                        <div class="progress-bar with__0" role="progressbar" aria-valuenow="0" aria-valuemin="0" aria-valuemax="100">
                        </div>
                    </div>
                </nav>

                <div class="form-group margin__top__20px">
                    <label id="industry_id_label" class="label_notification">
                        {{ translate('Please select industry') }}
                    </label>
                </div>

                <div class="form-group margin__top__25px">
                    <label id="name_label" class="label_notification">
                        {{ translate('Please enter title of Buy Offer') }}
                    </label>
                </div>

                <div class="form-group">
                    <label id="keywords_label" class="label_notification">
                        {{ translate('Please enter comma seperated keywords.') }} <br>{{ translate('example: shoes,clothes,eyewear etc') }}
                    </label>
                </div>

                <div class="form-group margin__top__90px">
                    <label id="description_label" class="label_notification">
                        {{ translate('Please let suppliers know your detailed requirements. You may include: color, size, material, grade/standard, etc') }}
                    </label>
                </div>



                <div class="form-group margin__top__104px margin__bottom__10px">
                    <label id="quantity_label" class="label_notification">
                        {{ translate('Please enter required quantity and select proper unit') }}
                    </label>
                </div>

                <div class="form-group">
                    <label id="frequency_label" class="label_notification">
                        {{ translate('Please enter buying frequency') }}
                    </label>
                </div>

                <div class="form-group margin__top__115px">
                    <label id="file_label" class="label_notification">
                        {{ translate('Attachment like product pictures/images would improve your RFQ') }}
                    </label>
                </div>

            </div>

        </div>
    </div>
</div>
@stop

@push('script')
    
@endpush