@extends('layouts.app') @section('title', 'Brochure') @section('content')

Brochure

@can('brand.view') {!! Form::open(['url' => action([\App\Http\Controllers\BrochureController::class, 'downloadBrochurePdf']), 'method' => 'post', 'class' => 'product_form ', 'files' => true ]) !!} @component('components.widget', ['class' => 'box-primary'])
{!! Form::label('location_id', 'Store Name:*') !!} {!! Form::select('location_id', $locations, null, ['placeholder' => __('messages.please_select'), 'class' => 'form-control select2']); !!}
{!! Form::label('image', 'Header Image:(1200px*155px)') !!} {!! Form::file('h_image', ['id' => 'header_image', 'accept' => 'image/*', 'required' => 'required', 'class' => 'upload-element']); !!}

@lang('purchase.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)])
@lang('lang_v1.aspect_ratio_should_be_1_1')

{!! Form::label('image','Banner Image:(1200px*656px)') !!} {!! Form::file('b_image', ['id' => 'banner_image', 'accept' => 'image/*', 'required' => 'required', 'class' => 'upload-element']); !!}

@lang('purchase.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)])
@lang('lang_v1.aspect_ratio_should_be_1_1')

{!! Form::label('variation_ids', __('report.products') . ':') !!} {!! Form::select('variation_ids[]', [], 0, ['multiple' => 'multiple','id' => "variation_ids", 'class' => 'form-control']); !!}
{!! Form::label('image', 'Footer Image:(1200px*521px)') !!} {!! Form::file('f_image', ['id' => 'footer_image', 'accept' => 'image/*', 'required' => 'required', 'class' => 'upload-element']); !!}

@lang('purchase.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)])
@lang('lang_v1.aspect_ratio_should_be_1_1')

{!! Form::label('image','Address Image:(1200px*156px)') !!} {!! Form::file('a_image', ['id' => 'address_image', 'accept' => 'image/*', 'required' => 'required', 'class' => 'upload-element']); !!}

@lang('purchase.max_file_size', ['size' => (config('constants.document_size_limit') / 1000000)])
@lang('lang_v1.aspect_ratio_should_be_1_1')

@endcomponent {!! Form::close() !!} @endcan
@stop @section('javascript') @endsection