@extends('master')
@section('title')
New User
@stop
@section('styles')
@stop
@section('content')
@include('partials.dashboard-menu')
Add a new user for {{ $company }}
{{ Form::open(['files' => true]) }}
{{ Form::text('name') }}
{{ Form::email('email') }}
{{ Form::text('designation') }}
{{ Form::password('password') }}
{{ Form::password('password1') }}
{{ Form::close() }}
@include('partials.footer')
@stop
@section('scripts')
@stop