@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') {!! Html::style(Theme::current()->assetPath.'/pages/css/profile.min.css') !!} @endsection @section('content')
{{ Date::parse($user->created_at)->format('l j F Y') }}
{{ Date::parse($user->created_at)->diffForHumans() }}
{!! __('Account') !!}
{!! Form::open(array('route' => ['admin.user.update',$user->id],'method' => 'put' ,'files' => true ,'class' => 'form-horizontal','id' => 'form-main')) !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
publish) checked="checked" @endif data-on-text="" data-off-text="">
{!! Form::close() !!}
{!! Form::open(array('route' => ['update.supervisor.password'],'method' => 'POST' ,'files' => true ,'class' => 'form-horizontal','id' => 'form-main')) !!}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
{!! Form::close() !!}
@endsection @section('scripts') {!! Html::script(Theme::current()->assetPath.'/jquery.validate.js') !!} @endsection