@extends('admin.template.master') @section('title')

Media Gallery

@endsection @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} @endsection @section('main-content')

Entry

{!! Form::open(['url' => '/admin/media-galleries', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('Title') !!} {!! Form::text('title', null, ['class' => 'form-control', 'placeholder' => 'Enter Title']) !!} @if ($errors->has('title')){!! $errors->first('title') !!}@endif
{!! Form::label('Brand') !!} {!! Form::select('brand', $brands, null, ['class' => 'form-control', 'id' => 'brand_select2']) !!} @if ($errors->has('brand')){!! $errors->first('brand') !!}@endif
{!! Form::label('Media Gallery') !!} {!! Form::file('image_name[]', ['multiple']) !!} @if ($errors->has('image_name')){!! $errors->first('image_name') !!}@endif
{!! Form::close() !!}
@endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} @endsection