@extends('layouts.customer') @section('content')

Notifications

Send Notification
@if ($errors->any())
Oops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if($customers && count($customers) > 0)
@csrf
@else

There are no registered customers.

@endif
@endsection