-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added address, city, state and country to importer and city to bulk editor #8250
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,6 +55,15 @@ | |
</div> | ||
</div> | ||
|
||
<!-- City --> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar question as above - is just City enough? |
||
<div class="form-group{{ $errors->has('city') ? ' has-error' : '' }}"> | ||
<label class="col-md-3 control-label" for="city">{{ trans('general.city') }}</label> | ||
<div class="col-md-4"> | ||
<input class="form-control" type="text" name="city" id="city" aria-label="city" /> | ||
{!! $errors->first('city', '<span class="alert-msg" aria-hidden="true">:message</span>') !!} | ||
</div> | ||
</div> | ||
|
||
<!-- activated --> | ||
<div class="form-group"> | ||
<div class="col-sm-3 control-label"> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this also have Address, State and Country? Or would that make this too wide?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I specifically chose not to do that there because I fear people will get that confused with location. It would we weird to bulk edit a bunch of users with an identical home address, wouldn't it?