@extends('admin.layouts.master') @section('content')

{!! __('heading.create_gallery') !!}

{!! Form::open(['route' => 'admin.gallery.store', 'method' => 'post', 'id' => 'ajax-submit', 'files' => 'true']) !!}
{!! Form::label('gallery_location', __('field.gallery_location')) !!} {!! Form::select('gallery_location', galleryLocation(),null, ['class' => 'form-control gallery_location']) !!}
{!! Form::label('media_type', __('field.media_type')) !!} {!! Form::select('media_type',mediaType(),null,['class'=>'form-control __media_type media_type','data-route' => route('admin.get-gallery-folder')]) !!}
{!! Form::label('status', __('field.status')) !!} {!! Form::select('status', status(), 1, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection @section('script') @endsection