@extends('admin/master/index') @section('content')

All image will have same category,tags as you select below and local image name is taken as title

{{ t('Add files...') }}
{!! Form::label('category_id', 'Category') !!} {!! Form::select('category_id', array_pluck(siteCategories(), 'name', 'id'),null,['class' => 'form-control']) !!}
{!! Form::label('allow_download', 'Allow Download Original Image') !!} {!! Form::select('allow_download',array('1' => 'Yes', '0' => 'No'),NULL,array('class' => 'form-control')) !!}
{!! Form::label('is_adult', 'Is Adult Image') !!} {!! Form::select('is_adult',['1' => 'Yes', '0' => 'No'],null,['class' => 'form-control']) !!}
{!! Form::label('tags', 'Tags') !!}
 
@endsection @section('extra-js') @endsection