@if(session('success'))
{{ session('success') }}
@endif
{{-- Fetching validation errors, if any and create a popup container specifying the errors --}}
@if ($errors->any())
@foreach ($errors->all() as $error)
-
{{ $error }}
@endforeach
@endif
@endsection