| Path : /var/www/html/thb_loan_system/resources/views/branch/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //var/www/html/thb_loan_system/resources/views/branch/change.blade.php |
@extends('layouts.master')
@section('title')
{{ translate('change branch') }}
@endsection
@section('content')
<div class="panel panel-white">
<div class="panel-heading">
<h6 class="panel-title">{{ translate('change branch') }}</h6>
<div class="heading-elements">
</div>
</div>
{!! Form::open(array('url' => url('branch/change'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
<div class="panel-body">
<div class="form-group">
{!! Form::label('branch_id',translate('branch'),array('class'=>'col-sm-2 control-label')) !!}
<div class="col-sm-10">
{!! Form::select('branch_id',$branches,null, array('class' => 'form-control select2', 'placeholder'=>"",'required'=>'required')) !!}
</div>
</div>
</div>
<!-- /.panel-body -->
<div class="panel-footer">
<div class="heading-elements">
<button type="submit" class="btn btn-primary pull-right">{{ translate('save') }}</button>
</div>
</div>
{!! Form::close() !!}
</div>
<!-- /.box -->
@endsection