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

@ -19,6 +19,7 @@
{{ Form::selectGroup('locale', trans_choice('general.languages', 1), 'flag', language()->allowed(), setting('general.default_locale')) }}
@if (setting('general.use_gravatar', '0') == '1')
@stack('picture_input_start')
{{ Form::hidden('picture', trans_choice('general.pictures', 1)) }}
<div class="form-group col-md-6">
{!! Form::label('picture', trans_choice('general.pictures', 1), ['class' => 'control-label']) !!}
@ -28,6 +29,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