@include('partials._head') @include('partials._nav')
@if (session('status'))
{{ session('status') }}
@endif @include('partials._header_forms',['title'=> trans('forms.user')])
@if (count($errors) > 0)
{{ trans('forms.general_error') }}
@endif {!! Form::open(['route' => 'users.store','id'=>'form1']) !!} @include('users.fields') {!! Form::close() !!}
@include('partials._javascript', ['needValidate' => 'yes']) @yield('scripts')