Path : /var/www/html/thb_loan_system/resources/views/user/ |
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/user/profile.blade.php |
@extends('layouts.master') @section('title') {{ translate('edit user') }} @endsection @section('content') <div class="box box-default" style="background: #fff"> <div class="panel-heading"> <h6 class="panel-title"> {{ translate('edit user') }}</h6> <div class="heading-elements"> </div> </div> {!! Form::open(array('url' => 'user/profile','class'=>'form-horizontal form-bordered form-label-stripped',"enctype" => "multipart/form-data")) !!} <div class="panel-body"> <div class="form-group"> {!! Form::label(translate('first_name'),null,array('class'=>'control-label')) !!} {!! Form::text('first_name',$user->first_name,array('class'=>'form-control','required'=>'required')) !!} </div> <div class="form-group"> {!! Form::label(translate('last_name'),null,array('class'=>'control-label')) !!} {!! Form::text('last_name',$user->last_name,array('class'=>'form-control','required'=>'required')) !!} </div> <div class="form-group"> {!! Form::label(translate('gender'),null,array('class'=>' control-label')) !!} {!! Form::select('gender', array('Male' =>translate('male'), 'Female' => translate('female')),$user->gender,array('class'=>'form-control')) !!} </div> <div class="form-group"> {!! Form::label(translate('phone'),null,array('class'=>'control-label')) !!} {!! Form::text('phone',$user->phone,array('class'=>'form-control')) !!} </div> <div class="form-group "> {!! Form::label(translate('email'),null,array('class'=>'control-label')) !!} {!! Form::email('email',$user->email,array('class'=>'form-control','required'=>'required')) !!} </div> <div class="form-group"> {!! Form::label(translate('password'),null,array('class'=>'control-label')) !!} {!! Form::password('password',array('class'=>'form-control')) !!} </div> <div class="form-group"> {!! Form::label(translate('repeat_password'),null,array('class'=>'control-label')) !!} {!! Form::password('rpassword',array('class'=>'form-control')) !!} </div> <div class="form-group"> {!! Form::label(translate('address'),null,array('class'=>'control-label')) !!} {!! Form::textarea('address',$user->address,array('class'=>'form-control wysihtml5','rows'=>'3')) !!} </div> <div class="form-group"> {!! Form::label(translate('note'),null,array('class'=>'control-label')) !!} {!! Form::textarea('notes',$user->notes,array('class'=>'form-control wysihtml5','rows'=>'3')) !!} </div> </div> <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> @endsection @section('footer-scripts') <script src="{{ asset('assets/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js') }}"></script> @endsection