@extends('layouts.app') @section('content')
Filial
@if (isset($branch)) {!! Form::model($branch, ['route' => ['branches.update', $branch->id], 'class' => 'branch-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!} @method('PUT') @else {!! Form::open(['route' => 'branches.store', 'class' => 'branch-form', 'enctype' => 'multipart/form-data', 'accept-charset' => 'UTF-8']) !!} @endif
{!! Form::label('plz', __('custom.attribute.plz')) !!} {!! Form::text('plz', null, ['class' => 'form-control']) !!}
{!! Form::label('district', __('custom.attribute.district')) !!} {!! Form::text('district', null, ['class' => 'form-control']) !!}
{!! Form::label('district_id', __('custom.attribute.district_id')) !!} {!! Form::text('district_id', null, ['class' => 'form-control']) !!}
{!! Form::label('street', __('custom.attribute.street')) !!} {!! Form::text('street', null, ['class' => 'form-control']) !!}
{!! Form::label('latitude', __('custom.attribute.latitude')) !!} {!! Form::text('latitude', null, ['class' => 'form-control']) !!}
{!! Form::label('longitude', __('custom.attribute.longitude')) !!} {!! Form::text('longitude', null, ['class' => 'form-control']) !!}
{!! Form::label('contact_person', __('custom.attribute.contact_person')) !!} {!! Form::text('contact_person', null, ['class' => 'form-control']) !!}
{!! Form::label('telephone', __('custom.attribute.telephone')) !!} {!! Form::text('telephone', null, ['class' => 'form-control']) !!}
{!! Form::label('installation_date', __('custom.attribute.installation_date')) !!} {!! Form::text('installation_date', null, ['class' => 'form-control']) !!}
{!! Form::label('viewing_appointment', __('custom.attribute.viewing_appointment')) !!} {!! Form::text('viewing_appointment', null, ['class' => 'form-control']) !!}
{!! Form::label('renovation_batch', __('custom.attribute.renovation_batch')) !!} {!! Form::text('renovation_batch', null, ['class' => 'form-control']) !!}
{!! Form::label('project_leader', __('custom.attribute.project_leader')) !!} {!! Form::text('project_leader', null, ['class' => 'form-control']) !!}
{!! Form::label('general_contractor', __('custom.attribute.general_contractor')) !!} {!! Form::text('general_contractor', null, ['class' => 'form-control']) !!}
{!! Form::label('construction_management', __('custom.attribute.construction_management')) !!} {!! Form::text('construction_management', null, ['class' => 'form-control']) !!}
{!! Form::label('furniture_contact_person', __('custom.attribute.furniture_contact_person')) !!} {!! Form::text('furniture_contact_person', null, ['class' => 'form-control']) !!}
{!! Form::label('note', __('custom.attribute.note')) !!} {!! Form::textarea('note', null, ['class' => 'form-control']) !!}
{!! Form::close() !!}
@endsection