@extends('layout.app') @section('content')

Tambah Data Klien

{!! Form::open(array('route' =>['klien.update', $klien->id], 'method' => 'PUT', 'role' => 'form', 'class' => 'form-horizontal', 'enctype' => 'multipart/form-data')) !!} {!! csrf_field() !!}
@if ($errors->has('avatar')) {{ $errors->first('avatar') }} @endif
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('pic')) {{ $errors->first('pic') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
Cancel
{!! Form::close() !!}
@endsection