@extends('layouts.app') @section('title') {{ __('messages.user.new_user') }} @endsection @section('page_css') @endsection @section('header_toolbar')

@yield('title')

@endsection @section('content')
@include('layouts.errors')
{{ Form::open(['route' => ['users.index'], 'method'=>'post', 'files' => true, 'id' => 'createUserForm']) }} @include('users.fields') {{ Form::close() }}
@endsection @section('page_scripts') @endsection @section('scripts') @endsection