@extends('layouts.main_dashboard.app') @section('title', __('dashboard.Create New Album')) @section('page_heading', __('dashboard.Create New Album')) @section('breadcrumb') @endsection @section('content')
@csrf
@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') }}
@endsection