@extends('Frontend.Layouts.modal')
@section('title')
{{ trans('global.delete') }}
@stop
@section('body')
{!!Form::open(['route' => 'admin.objects.destroy', 'method' => 'DELETE'])!!}
@foreach($ids as $id)
{!!Form::hidden('ids[]', $id)!!}
@endforeach
{!! trans('front.do_objects_delete') !!}
@if(config('tobuli.object_delete_pass') && isAdmin())
{!! Form::label('password', trans('validation.attributes.password') . '*:') !!}
{!! Form::password('password', ['class' => 'form-control']) !!}
@endif
{!!Form::close()!!}
@stop
@section('buttons')
{{ trans('admin.confirm') }}
{{ trans('admin.cancel') }}
@stop