{!! Form::open([ 'method' => 'post', 'url' => '/admin/presale-salesmans/create']) !!}
@csrf
{!! Form::label('Phone Number') !!}
{!! Form::text('phone', null, ['class' => 'form-control', 'placeholder' => 'Phone Number 10 digit without first 0']) !!}
@if ($errors->has('phone')){!! $errors->first('phone') !!}@endif
{!! Form::label('Password') !!}
{!! Form::password('password', ['class' => 'form-control', 'placeholder' => 'Enter password']) !!}
@if ($errors->has('password')){!! $errors->first('password') !!}@endif
{!! Form::label('Location') !!}
{!! Form::select('location_id', $locations, null, ['id' => 'location_id', 'class'=> 'form-control']) !!}
@if ($errors->has('location_id')){!! $errors->first('location_id') !!}@endif
{!! Form::close() !!}