{!! Form::label('name', 'Name') !!} {!! Form::text('name', isset($organization) ? $organization->name : null, ['class' => 'form-control', 'placeholder' => 'Name']) !!} @if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
{!! Form::label('logo', 'Logo') !!} @if(isset($organization) && !is_null( $organization->logo)) Logo @endif {!! Form::file('logo', ['class' => 'form-control', 'placeholder' => 'Logo']) !!} @if ($errors->has('logo'))

{{ $errors->first('logo') }}

@endif
{!! Form::label('hotline', 'Hotline') !!} {!! Form::text('hotline', isset($organization) ? $organization->hotline : null, ['class' => 'form-control', 'placeholder' => 'Hotline']) !!} @if ($errors->has('hotline'))

{{ $errors->first('hotline') }}

@endif
{!! Form::label('email', 'Email') !!} {!! Form::email('email', isset($organization) ? $organization->email : null, ['class' => 'form-control', 'placeholder' => 'Email']) !!} @if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
{!! Form::label('address', 'Address') !!} {!! Form::text('address', isset($organization) ? $organization->address : null, ['class' => 'form-control', 'placeholder' => 'Address']) !!} @if ($errors->has('address'))

{{ $errors->first('address') }}

@endif
{!! Form::label('intro', 'Intro') !!} {!! Form::textarea('intro', null, ['class' => 'form-control', 'placeholder' => 'Description', "rows"=>"4"]) !!} @if ($errors->has('intro'))

{{ $errors->first('intro') }}

@endif
{!! Form::label('status', 'Status') !!} {!! Form::select('status', ['0' => 'Disable', '1' => 'Enable'], isset($organization) ? $organization->status : null, ['class' => 'form-control']) !!} @if ($errors->has('status'))

{{ $errors->first('status') }}

@endif