File "user.blade.php"
Full Path: /home/bettaeza/flyinsyria.com/app/.well-known/modules/Layout/user.blade.php
File size: 6.93 KB
MIME-type: text/html
Charset: utf-8
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="{{$html_class ?? ''}}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
@php($favicon = setting_item('site_favicon'))
<link rel="icon" type="image/png" href="{{!empty($favicon)?get_file_url($favicon,'full'):url('images/favicon.png')}}" />
@include('Layout::parts.seo-meta')
<link href="{{ asset('libs/bootstrap/css/bootstrap.css') }}" rel="stylesheet">
<link href="{{ asset('libs/font-awesome/css/font-awesome.css') }}" rel="stylesheet">
<link href="{{ asset('libs/ionicons/css/ionicons.min.css') }}" rel="stylesheet">
<link href="{{ asset('libs/icofont/icofont.min.css') }}" rel="stylesheet">
<link href="{{ asset('dist/frontend/css/notification.css') }}" rel="newest stylesheet">
<link href="{{ asset('dist/frontend/css/app.css?_ver='.config('app.asset_version')) }}" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="{{ asset("libs/daterange/daterangepicker.css") }}" >
<link rel="stylesheet" type="text/css" href="{{ asset("libs/select2/css/select2.min.css") }}" >
<!-- Fonts -->
<link rel="dns-prefetch" href="//fonts.gstatic.com">
<link rel='stylesheet' id='google-font-css-css' href='https://fonts.googleapis.com/css?family=Poppins%3A400%2C500%2C600' type='text/css' media='all' />
@include('Layout::parts.global-script')
<script>
var image_editer = {
language: '{{ app()->getLocale() }}',
translations: {
{{ app()->getLocale() }}: {
'header.image_editor_title': '{{ __('Image Editor') }}',
'header.toggle_fullscreen': '{{ __('Toggle fullscreen') }}',
'header.close': '{{ __('Close') }}',
'header.close_modal': '{{ __('Close window') }}',
'toolbar.download': '{{ __('Save Change') }}',
'toolbar.save': '{{ __('Save') }}',
'toolbar.apply': '{{ __('Apply') }}',
'toolbar.saveAsNewImage': '{{ __('Save As New Image') }}',
'toolbar.cancel': '{{ __('Cancel') }}',
'toolbar.go_back': '{{ __('Go Back') }}',
'toolbar.adjust': '{{ __('Adjust') }}',
'toolbar.effects': '{{ __('Effects') }}',
'toolbar.filters': '{{ __('Filters') }}',
'toolbar.orientation': '{{ __('Orientation') }}',
'toolbar.crop': '{{ __('Crop') }}',
'toolbar.resize': '{{ __('Resize') }}',
'toolbar.watermark': '{{ __('Watermark') }}',
'toolbar.focus_point': '{{ __('Focus point') }}',
'toolbar.shapes': '{{ __('Shapes') }}',
'toolbar.image': '{{ __('Image') }}',
'toolbar.text': '{{ __('Text') }}',
'adjust.brightness': '{{ __('Brightness') }}',
'adjust.contrast': '{{ __('Contrast') }}',
'adjust.exposure': '{{ __('Exposure') }}',
'adjust.saturation': '{{ __('Saturation') }}',
'orientation.rotate_l': '{{ __('Rotate Left') }}',
'orientation.rotate_r': '{{ __('Rotate Right') }}',
'orientation.flip_h': '{{ __('Flip Horizontally') }}',
'orientation.flip_v': '{{ __('Flip Vertically') }}',
'pre_resize.title': '{{ __('Would you like to reduce resolution before editing the image?') }}',
'pre_resize.keep_original_resolution': '{{ __('Keep original resolution') }}',
'pre_resize.resize_n_continue': '{{ __('Resize & Continue') }}',
'footer.reset': '{{ __('Reset') }}',
'footer.undo': '{{ __('Undo') }}',
'footer.redo': '{{ __('Redo') }}',
'spinner.label': '{{ __('Processing...') }}',
'warning.too_big_resolution': '{{ __('The resolution of the image is too big for the web. It can cause problems with Image Editor performance.') }}',
'common.x': '{{ __('x') }}',
'common.y': '{{ __('y') }}',
'common.width': '{{ __('width') }}',
'common.height': '{{ __('height') }}',
'common.custom': '{{ __('custom') }}',
'common.original': '{{ __('original') }}',
'common.square': '{{ __('square') }}',
'common.opacity': '{{ __('Opacity') }}',
'common.apply_watermark': '{{ __('Apply watermark') }}',
'common.url': '{{ __('URL') }}',
'common.upload': '{{ __('Upload') }}',
'common.gallery': '{{ __('Gallery') }}',
'common.text': '{{ __('Text') }}',
}
}
};
</script>
<link href="{{ asset('dist/frontend/module/user/css/user.css?_ver='.config('app.asset_version')) }}" rel="stylesheet">
<!-- Styles -->
@stack('css')
<style type="text/css">
.bravo_topbar, .bravo_header, .bravo_footer {
display: none;
}
html, body, .bravo_wrap, .bravo_user_profile,
.bravo_user_profile > .container-fluid > .row-eq-height > .col-md-3 {
min-height: 100vh !important;
}
</style>
{{--Custom Style--}}
<link href="{{ route('core.style.customCss') }}" rel="stylesheet">
<link href="{{ asset('libs/carousel-2/owl.carousel.css') }}" rel="stylesheet">
@if(setting_item_with_lang('enable_rtl'))
<link href="{{ asset('dist/frontend/css/rtl.css') }}" rel="stylesheet">
@endif
</head>
<body class="user-page {{$body_class ?? ''}} @if(setting_item_with_lang('enable_rtl')) is-rtl @endif">
@if(!is_demo_mode())
{!! setting_item('body_scripts') !!}
@endif
<div class="bravo_wrap">
@include('Layout::parts.topbar')
@include('Layout::parts.header')
<div class="bravo_user_profile">
<div class="container-fluid">
<div class="row row-eq-height">
<div class="col-md-3">
@include('User::frontend.layouts.sidebar')
</div>
<div class="col-md-9">
<div class="user-form-settings">
@include('Layout::parts.user-bc')
@yield('content')
</div>
</div>
</div>
</div>
</div>
@include('Layout::parts.footer',['is_user_page'=>1])
</div>
<script src="{{ asset('libs/filerobot-image-editor/filerobot-image-editor.min.js?_ver='.config('app.asset_version')) }}"></script>
@if(!is_demo_mode())
{!! setting_item('footer_scripts') !!}
@endif
</body>
</html>