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

Tambah Data Profil

Kembali

{!! Form::open(array('action' => 'ProfilController@store','files'=>'true')) !!} {!! csrf_field() !!}
{!! Form::label('nama_portfolio', 'Nama profil') !!} {!! Form::text('nama_profil','', array('class' => 'form-control')) !!} @if($errors->count())
{{ $errors->first('nama_profil') }}
@endif
{!! Form::label('gambar', 'gambar') !!} {!! Form::file('gambar')!!}
{!! Form::label('isi', 'Isi') !!} {!! Form::textarea('isi','', array('class' => 'form-control','id'=>'editor1')) !!}
{!! Form::submit('Simpan', array('class' => 'btn btn-primary'))!!} {!! Form::close() !!}
@endsection