@section('Dashboard')

shapes {!! __('Create Report') !!}

{!! __('Welcome to the Report Management Dashboard! Here, you can easily Create new Report to tailor the system to your needs. Simply navigate to the Create Report section to get started.') !!}


@if($errors->any())
@foreach ($errors->all() as $error) {{ $error }} @endforeach
@endif

{!! __('Report Form') !!}

@csrf
{!! __('Payment Status') !!}
{!! __('Order Status') !!}
{!! __('Date From') !!}
@error('datefrom')
{{ $message }}
@enderror
{!! __('Date To') !!}
@error('dateto')
{!! $message !!}
@enderror
@error('gateway')
{!! $message !!}
@enderror
@include('layouts.footer')
@endsection