@extends('cms.application') @section('content')
@if ($gallery->type =='photos')
Upload Bulk {{ $gallery->type}} For {{ $gallery->title}} Gallery
16:9 is The Recommended Aspect Ratio, Please Make Sure all your images are in the same aspect ratio before upload
{!! Form::model($media,['route' => ['cms.media.bulk-upload-images',$gallery->id],'files'=>true,'class'=>'dropzone']) !!} {!! Form::hidden('gallery_id',$gallery->id) !!} @include('cms.media.bulk_upload_form', ['submitButton' => "Save"]) {!! Form::close() !!}
@else
Bulk Upload if for Photo Gallery Only
@endif
@stop @section('scripts') @stop