@extends('layouts.main_dashboard.app') @section('title', __('dashboard.Edit Album')) @section('page_heading', __('dashboard.Edit Album')) @section('breadcrumb') @endsection @section('content')
@csrf @method('PUT')
@error('title')
{{ $message }}
@enderror
{{ __('dashboard.Max 64 images and 1 video allowed.') }}
@error('files')
{{ $message }}
@enderror @foreach($errors->get('files.*') as $error)
{{ $error[0] }}
@endforeach
{{ __('dashboard.Cancel') }}

{{ __('dashboard.Current Media') }}

@foreach($gallery->media as $media)
@if($media->file_type == 'video')
Video
@else @endif
@endforeach
@endsection