@extends('layouts.frontend', ['body_class' => 'bg-gray-100']) @php SEOMeta::setTitle('Galéria szerkesztése'); /** * This function returns the maximum files size that can be uploaded * in PHP * @returns int File size in bytes **/ function getMaximumFileUploadSize() { return min((ini_get('post_max_size')), (ini_get('upload_max_filesize'))); } @endphp @section('content') @if ($errors->any()) @endif
@csrf
@foreach ( $gallery->images()->get() as $i ) @endforeach
{{ __('Mentés') }}
@endsection