@extends('adminlte::page') @section('title', __('title.edit_gallery')) @section('content_top_nav_right') @endsection @section('content_header') @stop @section('plugins.Flag', true) @section('plugins.Datatables', true) @section('plugins.BsCustomFileInput', true) @section('plugins.Pace', true) @section('plugins.Toastr', true) @section('plugins.Sweetalert2', true) @section('content')
@method('PUT') @csrf
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('alt_text'))
{{ $errors->first('alt_text') }}
@endif
{{ $errors->first('description') }}

{{ __('title.file_information') }}

{{ __('form.uploaded_on') }}: {{ $gallery->created_at }}
{{ __('form.file_name') }}: {{ $meta->file }}
{{ __('form.file_type') }}: {{ $meta->type }}
{{ __('form.file_size') }}: {{ $meta->size }}
{{ __('form.dimension') }}: {{ $meta->dimension }}
@stop @push('js') @include('layouts.partials._notification') @include('layouts.partials._switch_lang') @endpush @section('footer') @include('layouts.partials._footer') @stop