ok

Mini Shell

Direktori : /home2/selectio/www/bharath/application/views/admin/location/
Upload File :
Current File : /home2/selectio/www/bharath/application/views/admin/location/update_city.php

<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>

<div class="row">
    <div class="col-lg-6 col-md-12">
        <div class="box box-primary">
            <div class="box-header with-border">
                <h3 class="box-title"><?php echo trans("update_city"); ?></h3>
            </div>
            <!-- /.box-header -->

            <!-- form start -->
            <?php echo form_open('admin_controller/update_city_post'); ?>
            <input type="hidden" name="id" value="<?php echo $city->id; ?>">
            <input type="hidden" name="redirect_url" value="<?php echo $this->agent->referrer(); ?>">

            <div class="box-body">
                <!-- include message block -->
                <?php $this->load->view('admin/includes/_messages'); ?>

                <div class="form-group">
                    <label><?php echo trans('country'); ?></label>
                    <select name="country_id" class="form-control" required>
                        <option value=""><?php echo trans("select"); ?></option>
                        <?php
                        foreach ($countries as $item): ?>
                            <option value="<?php echo $item->id; ?>" <?php echo ($city->country_id == $item->id) ? 'selected' : ''; ?>>
                                <?php echo html_escape($item->name); ?>
                            </option>
                        <?php endforeach; ?>
                    </select>
                </div>

                <div class="form-group">
                    <label><?php echo trans('state'); ?></label>
                    <select name="state_id" id="select_states" class="form-control" required>
                        <option value=""><?php echo trans("select"); ?></option>
                        <?php foreach ($states as $item): ?>
                            <option value="<?php echo $item->id; ?>" <?php echo ($city->state_id == $item->id) ? 'selected' : ''; ?>>
                                <?php echo html_escape($item->name); ?>
                            </option>
                        <?php endforeach; ?>
                    </select>
                </div>

                <div class="form-group">
                    <label><?php echo trans("name"); ?></label>
                    <input type="text" class="form-control" name="name" value="<?php echo $city->name; ?>" placeholder="<?php echo trans("name"); ?>" maxlength="200" required>
                </div>

            </div>

            <!-- /.box-body -->
            <div class="box-footer">
                <button type="submit" class="btn btn-primary pull-right"><?php echo trans('save_changes'); ?></button>
            </div>
            <!-- /.box-footer -->
            <?php echo form_close(); ?><!-- form end -->
        </div>
        <!-- /.box -->
    </div>
</div>

Zerion Mini Shell 1.0