21 lines
557 B
PHP
21 lines
557 B
PHP
<!DOCTYPE html>
|
|
@if (app()->getLocale() == 'ar')
|
|
<html lang="ar" dir="rtl">
|
|
@else
|
|
<html lang="en" dir="auto">
|
|
@endif
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="{{__('IE=edge')}}">
|
|
<meta name="viewport" content="{{__('width=device-width, initial-scale=1.0')}}">
|
|
<title>@hasSection('title') @yield('title') | @endif {{ get_option('general')['title'] ?? config('app.name') }}</title>
|
|
@include('layouts.partials.css')
|
|
</head>
|
|
<body>
|
|
@yield('main_content')
|
|
|
|
@include('layouts.partials.script')
|
|
|
|
</body>
|
|
</html>
|