@extends('tenant.layouts.admin') {{--Tilte Section--}} @section('title', 'Import Flows Management') {{--Style Section--}} @section('style') @endsection {{--Content Section--}} @section('content')
@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif @if (session('errors2'))
{{ session('errors2') }}
@endif
@error('file')

{{$message}}

@enderror
@endsection {{--Script Section--}} @section('script') @endsection