@extends("template.master") @section("section_content")

Update Gambar

Kembali

{!! Form::open(array('action' => 'UserController@updateBg','files'=>'true')) !!} {!! csrf_field() !!}
{!! Form::label('foto', 'Favicon (ICO)') !!} {!! Form::file('favicon','', array('class' => 'form-control')) !!}

{{ $errors->first('favicon') }}
{!! Form::label('foto', 'Logo (PNG)') !!} {!! Form::file('logo','', array('class' => 'form-control')) !!}

{{ $errors->first('logo') }}
{!! Form::label('foto', 'Background Login (JPG)') !!} {!! Form::file('bg','', array('class' => 'form-control')) !!}

{{ $errors->first('bg') }}
{!! Form::submit('Simpan', array('class' => 'btn btn-primary'))!!} {!! Form::close() !!}
@endsection