@extends('layouts.admin') @section('content')

Add User

{!! Form::open(['action' => 'UsersController@store', 'method' => 'POST']) !!}
{{ Form::label('firstname', 'First Name') }} {{ Form::text('firstname', '', ['class' => 'form-control', 'placeholder' => 'enter first name']) }}
{{ Form::label('lastname', 'Last Name') }} {{ Form::text('lastname', '', ['class' => 'form-control', 'placeholder' => 'enter last name']) }}
{{ Form::label('email', 'Email Address') }} {{ Form::text('email', '', ['class' => 'form-control', 'placeholder' => 'enter email address']) }}
{{ Form::submit('Submit', ['class' => 'btn btn-primary']) }}
{!! Form::close() !!}
@endsection