@extends('layouts.main_dashboard.app') @section('title', __('dashboard.Create New Post')) @section('page_heading', __('dashboard.Create New Post')) @section('breadcrumb') @endsection @section('content')
@csrf
@error('body')
{{ $message }}
@enderror
{{ __('dashboard.You can upload up to 4 images OR 1 video.') }}
@error('files')
{{ $message }}
@enderror @foreach($errors->get('files.*') as $error)
{{ $error[0] }}
@endforeach
{{ __('dashboard.Cancel') }}
@endsection