@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') {!! Html::style(Theme::current()->assetPath.'/pages/css/profile.min.css') !!} @endsection @section('content')
{{ $user->name }}
{{ $user->profile->name }}
{{ \Carbon\Carbon::createFromTimeStamp(strtotime($user->profile->expires_at))->format('Y-m-d') }}
{{ Date::parse($user->profile->expires_at)->diffForHumans() }}
{{ 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('phone')) {{ $errors->first('phone') }} @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() !!}
{!! Form::open(array('route' => ['update.account.package'],'method' => 'POST' ,'files' => true ,'class' => 'form-horizontal','id' => 'form-main')) !!}
@if ($errors->has('package_name')) {{ $errors->first('package_name') }} @endif
@if ($errors->has('package_company')) {{ $errors->first('package_company') }} @endif
@if ($errors->has('package_phone')) {{ $errors->first('package_phone') }} @endif
@if ($errors->has('package_email')) {{ $errors->first('package_email') }} @endif
@if ($errors->has('website')) {{ $errors->first('website') }} @endif
{{ __('Cancel') }}
{!! Form::close() !!}
@endsection @section('scripts') {!! Html::script(Theme::current()->assetPath.'/jquery.validate.js') !!} @endsection