@if (isset($add_photo_gallery))
{{ Form::open([
'class' => 'form-horizontal',
'files' => true,
'route' => 'photo-gallery-update',
'method' => 'POST',
'enctype' => 'multipart/form-data',
]) }}
@else
@if (userPermission('photo-gallery-store'))
{{ Form::open([
'class' => 'form-horizontal',
'files' => true,
'route' => 'photo-gallery-store',
'method' => 'POST',
'enctype' => 'multipart/form-data',
]) }}
@endif
@endif
@if (isset($add_photo_gallery))
@lang('front_settings.edit_photo_gallery')
@else
@lang('front_settings.photo_gallery')
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@lang('front_settings.add_gallery_photos')
@if (@$add_photo_gallery)
@foreach (@$add_photo_galleries as $galleryImage)
@endforeach
@endif
@if(config('app.app_sync'))
@else
@endif
{{ Form::close() }}