refs #443 form element add manuel

This commit is contained in:
cuneytsenturk
2018-08-07 17:35:45 +03:00
parent 36df336578
commit 62beb11051
22 changed files with 84 additions and 36 deletions

View File

@ -24,6 +24,7 @@
{{ Form::selectGroup('locale', trans_choice('general.languages', 1), 'flag', language()->allowed()) }}
@if (setting('general.use_gravatar', '0') == '1')
@stack('picture_input_start')
<div class="form-group col-md-6">
{!! Form::label('picture', trans_choice('general.pictures', 1), ['class' => 'control-label']) !!}
<div class="input-group">
@ -32,6 +33,7 @@
{!! Form::hidden('picture', null, ['id' => 'picture', 'class' => 'form-control']) !!}
</div>
</div>
@stack('picture_input_end')
@else
{{ Form::fileGroup('picture', trans_choice('general.pictures', 1)) }}
@endif