@extends('layouts.container')
@section('css')
@endsection
@section('body-class', 'skin-red')
@section('title', 'Tambah Pengguna')
@section('content')
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
{{ Form::open(array('route' => 'users-create-data','role' => 'form','method' => 'PUT')) }}
@include('admin.users.form')
{{ Form::submit('Create', array('class' => 'btn btn-primary')) }}
Cancel
{{ Form::close() }}
@endsection