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

reply Create User

{!! Form::open(['method' => 'POST', 'action' => 'PlanController@store', 'files' => true]) !!}
{!! Form::label('name',__('Enter Name')) !!}

- Please enter your name

{!! Form::text('name', null, ['class' => 'form-control', 'required' => 'required', 'autofocus']) !!} {{ $errors->first('name') }}
{!! Form::label('email', 'Email address') !!}

- Please enter your email

{!! Form::email('email', null, ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('email') }}
{!! Form::label('password', 'Password') !!}

- Please enter your password

{!! Form::password('password', ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('password') }}
{!! Form::label('confirm_password', 'Confirm Password') !!}

- Please enter your password again

{!! Form::password('confirm_password', ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('confirm_password') }}
{!! Form::label('is_admin', 'Administrator') !!}
{{ $errors->first('is_admin') }}
{!! Form::close() !!}
@endsection @section('custom-script') @endsection