{!! 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() !!}