@extends('layouts.main')
@section('main-container')
@if(session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
Please fix the following errors:
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{-- JS for Dynamic Tables --}}
@endsection