28 lines
719 B
PHP
28 lines
719 B
PHP
<script type="text/javascript">
|
|
{{-- Success Message --}}
|
|
@if (Session::has('success'))
|
|
Swal.fire({
|
|
icon: 'success',
|
|
title: 'Done',
|
|
text: '{{ Session::get("success") }}',
|
|
confirmButtonColor: "#3a57e8"
|
|
});
|
|
@endif
|
|
{{-- Errors Message --}}
|
|
@if (Session::has('error'))
|
|
Swal.fire({
|
|
icon: 'error',
|
|
title: 'Opps!!!',
|
|
text: '{{Session::get("error")}}',
|
|
confirmButtonColor: "#3a57e8"
|
|
});
|
|
@endif
|
|
@if(Session::has('errors') || ( isset($errors) && is_array($errors) && $errors->any()))
|
|
Swal.fire({
|
|
icon: 'error',
|
|
title: 'Opps!!!',
|
|
text: '{{Session::get("errors")->first() }}',
|
|
confirmButtonColor: "#3a57e8"
|
|
});
|
|
@endif
|
|
</script> |