@extends('cms.application') @section('content')
Upload {{ $gallery->type}} For {{ $gallery->title}} Gallery
{!! Form::model($media,['route' => 'cms.media.store','files'=>true]) !!} {!! Form::hidden('gallery_id') !!} {!! Form::hidden('type',$gallery->type) !!} @if($gallery->type=='photos') @include('cms.includes.cropimage',['img' => '']) @endif @include('cms.media.'.$gallery->type.'_form', ['submitButton' => "Save"]) {!! Form::close() !!}
@stop @section('scripts') @stop