@extends('adminlte::layouts.app') @section('htmlheader_title') {{ trans('Cteate User') }} @endsection @section('contentheader_title') {{ trans('Cteate User') }} @endsection @section('main-content')
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach

{{ trans('User') }} Info

{!! Form::open(array('url' => ('admin/user/store'),'method'=>'POST', 'files'=>true)) !!}
{!! Form::label('first name', 'First Name') !!}

{!! Form::label('last name', 'Last Name') !!}

{!! Form::label('Phone1', 'Phone1') !!}

{!! Form::label('Phone2', 'Phone2') !!}

{!! Form::label('email', 'Email') !!}

{!! Form::label('password', 'Password') !!}

{!! Form::label('confirm password', 'Confirm Password') !!}

{!! Form::label('status', 'Status:') !!} {!! Form::radio('status', '1',true,['class' => 'minimal']) !!} Active   {!! Form::radio('status', '0','',['class' => 'minimal']) !!} InActive  
{!! Form::close() !!}
@include('adminlte::layouts.user.validation') @endsection