@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/settings/general.backups') }} @parent @stop {{-- Page content --}} @section('content')
@foreach ($files as $file) @endforeach
File Created Size
{{ $file['filename'] }} {{ date("M d, Y g:i A", $file['modified']) }} {{ $file['filesize'] }}
{{ Form::hidden('_token', csrf_token()) }}

@if (config('app.lock_passwords'))

{{ trans('general.feature_disabled') }}

@endif

Backup files are located in: {{ $path }}

@stop