@extends('home') @section('title') @lang('site.site_name') @endsection @section('styles') @endsection @section('content') {!! Form::open(array('route' => ['admin.user.store'],'files' => true ,'class' => 'form-horizontal','id' => 'form-main')) !!}
{!! __('Account') !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@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