@extends('_version_02.commons.layouts.admin') @section('content') {!! Form::model($model, ['class'=>'form-horizontal']) !!} @include('_version_02.commons.layouts.partials._alert')
{{App\Language::trans('User Detail')}}

{!! Form::label('status', App\Language::trans('Status'), ['class'=>'control-label col-md-4']) !!}
{!!$errors->first('status', '')!!}
{!! Form::label('user_id', App\Language::trans('User Email'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('email', null, ['class'=>'form-control']) !!} {!!$errors->first('email', '')!!}
{!! Form::label('fullname', App\Language::trans('Name'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('fullname', null, ['class'=>'form-control']) !!} {!!$errors->first('fullname', '')!!}
{!! Form::label('phone_number', App\Language::trans('Phone Number'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('phone_number', null, ['class'=>'form-control']) !!} {!!$errors->first('phone_number', '')!!}
@include('_version_02.commons.layouts.partials._form_floaring_footer_standard') {!! Form::close() !!} @endsection @section('script') @endsection