98 lines
3.1 KiB
PHP
98 lines
3.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Sentral Konveksi Jember</title>
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<meta content="Free HTML Templates" name="keywords">
|
|
<meta content="Free HTML Templates" name="description">
|
|
|
|
<!-- Favicon -->
|
|
<link href="img/favicon.ico" rel="icon">
|
|
|
|
<!-- Google Web Fonts -->
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
|
|
rel="stylesheet">
|
|
|
|
<!-- Font Awesome -->
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
|
|
|
|
<!-- Libraries Stylesheet -->
|
|
<link href="{{ asset('assets/lib/owlcarousel/assets/owl.carousel.min.css') }}" rel="stylesheet">
|
|
|
|
<!-- Customized Bootstrap Stylesheet -->
|
|
<link href="
|
|
https://cdn.jsdelivr.net/npm/sweetalert2@11.10.8/dist/sweetalert2.min.css
|
|
"
|
|
rel="stylesheet">
|
|
<link href="{{ asset('assets/css/style.css') }}" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Topbar Start -->
|
|
@include('partials.topbar')
|
|
<!-- Topbar End -->
|
|
|
|
|
|
<!-- Navbar Start -->
|
|
@include('partials.navbar')
|
|
<!-- Navbar End -->
|
|
|
|
@yield('content')
|
|
|
|
<!-- Footer Start -->
|
|
@include('partials.footer')
|
|
<!-- Footer End -->
|
|
|
|
|
|
<!-- Back to Top -->
|
|
<a href="#" class="btn btn-primary back-to-top"><i class="fa fa-angle-double-up"></i></a>
|
|
|
|
|
|
<!-- JavaScript Libraries -->
|
|
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
|
|
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js"></script>
|
|
<script src="{{ asset('assets/lib/easing/easing.min.js') }}"></script>
|
|
<script src="{{ asset('assets/lib/owlcarousel/owl.carousel.min.js') }}"></script>
|
|
|
|
<!-- Contact Javascript File -->
|
|
<script src="{{ asset('assets/mail/jqBootstrapValidation.min.js') }}"></script>
|
|
<script src="{{ asset('assets/mail/contact.js') }}"></script>
|
|
|
|
<!-- Template Javascript -->
|
|
<script src="{{ asset('assets/js/main.js') }}"></script>
|
|
|
|
<script src="
|
|
https://cdn.jsdelivr.net/npm/sweetalert2@11.10.8/dist/sweetalert2.all.min.js
|
|
"></script>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
@if (Session::has('message'))
|
|
Swal.fire({
|
|
title: 'Berhasil',
|
|
text: '{{ Session::get('message') }}',
|
|
icon: 'success',
|
|
confirmButtonText: 'OK'
|
|
});
|
|
@endif
|
|
@if ($errors->any())
|
|
var errorMessage = '';
|
|
@foreach ($errors->all() as $error)
|
|
errorMessage += '{{ $error }}\n';
|
|
@endforeach
|
|
|
|
Swal.fire({
|
|
title: 'Error',
|
|
text: errorMessage,
|
|
icon: 'error',
|
|
confirmButtonText: 'OK'
|
|
});
|
|
@endif
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|