Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelbistroemcasa.meumercado.app
/
resources
/
views
/
admin-views
/
notification
/
Editing: edit.blade.php
@extends('layouts.admin.app') @section('title', translate('Update Notification')) @push('css_or_js') @endpush @section('content') <div class="content container-fluid"> <!-- Page Header --> <div class="page-header"> <div class="row align-items-center"> <div class="col-sm mb-2 mb-sm-0"> <h1 class="page-header-title"><i class="tio-notifications"></i> {{\App\CentralLogics\translate('notification')}} {{\App\CentralLogics\translate('update')}}</h1> </div> </div> </div> <!-- End Page Header --> <div class="row gx-2 gx-lg-3"> <div class="col-sm-12 col-lg-12 mb-3 mb-lg-2"> <form action="{{route('admin.notification.update',[$notification['id']])}}" method="post" enctype="multipart/form-data"> @csrf <div class="form-group"> <label class="input-label" for="exampleFormControlInput1">{{\App\CentralLogics\translate('title')}}</label> <input type="text" value="{{$notification['title']}}" name="title" class="form-control" placeholder="{{ translate('New notification') }}" required> </div> <div class="form-group"> <label class="input-label" for="exampleFormControlInput1">{{\App\CentralLogics\translate('description')}}</label> <textarea name="description" class="form-control" required>{{$notification['description']}}</textarea> </div> <div class="form-group"> <label>{{\App\CentralLogics\translate('image')}}</label><small style="color: red">* ( {{\App\CentralLogics\translate('ratio')}} 3:1 )</small> <div class="custom-file"> <input type="file" name="image" id="customFileEg1" class="custom-file-input" accept=".jpg, .png, .jpeg, .gif, .bmp, .tif, .tiff|image/*"> <label class="custom-file-label" for="customFileEg1">{{\App\CentralLogics\translate('choose')}} {{\App\CentralLogics\translate('file')}}</label> </div> <hr> <center> <img style="width: 30%;border: 1px solid; border-radius: 10px;" id="viewer" src="{{asset('storage/app/public/notification')}}/{{$notification['image']}}" alt="image"/> </center> </div> <hr> <button type="submit" class="btn btn-primary">{{\App\CentralLogics\translate('submit')}}</button> </form> </div> <!-- End Table --> </div> </div> @endsection @push('script_2') <script> function readURL(input) { if (input.files && input.files[0]) { var reader = new FileReader(); reader.onload = function (e) { $('#viewer').attr('src', e.target.result); } reader.readAsDataURL(input.files[0]); } } $("#customFileEg1").change(function () { readURL(this); }); </script> @endpush
Save
Cancel