Edit File: header.blade.php
<!doctype html> <html lang="ar" style="scroll-behavior: smooth"> <head> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <!-- Bootstrap CSS --> <link rel="stylesheet" href="{{asset('/intro_site/css/bootstrap.min.css')}}"> <link rel="stylesheet" href="{{asset('/intro_site/css/all.min.css')}}"> <!-- plugins CSS --> <link rel="stylesheet" href="{{asset('/intro_site/plugins/owl-carousel/css/owl.carousel.min.css')}}"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" integrity="sha512-vKMx8UnXk60zUwyUnUPM3HbQo8QfmNx7+ltw8Pm5zLusl1XIfwcxo8DbWCqMGKaWeNxWA8yrx5v3SaVpMvR3CA==" crossorigin="anonymous" referrerpolicy="no-referrer" /> <!-- my CSS --> <link rel="stylesheet" href="{{asset('intro_site/css/style.css')}}"> @if (lang() == 'en') <link rel="stylesheet" href="{{asset('intro_site/css/style-ltr.css')}}"> @endif <meta name="description" content="{{$settings['intro_meta_description']}}" /> <meta name="keywords" content="{{$settings['intro_meta_keywords']}}" /> <meta property="fb:app_id" content="140586622674265" /> <meta property="og:type" content="website" /> <meta property="og:url" content="{{ Request::url() }}" /> <meta property="og:title" content="{{$settings['intro_name']}}" /> <meta property="og:description" content="{{$settings['intro_meta_description']}}" /> <meta property="og:image" content="{{$settings['intro_logo']}}"/> <meta property="og:width" content="200"/> <meta property="og:height" content="200"/> <style> :root { --main: {{$settings['color']}}; --hover: {{$settings['hover_color']}}; --main2: linear-gradient(to right bottom, {{$settings['buttons_color']}}, {{$settings['buttons_color']}}, {{$settings['buttons_color']}}, {{$settings['buttons_color']}}, {{$settings['buttons_color']}}); --white: #ffffff; --gray: #777; } </style> <title>{{$settings['intro_name']}}</title> <!-- title logo --> <link rel="icon" href="{{$settings['intro_logo']}}" type="image/x-icon" /> </head>
Back to File Manager