@extends('themes.default1.admin.layout.admin') @section('Settings') class="active" @stop @section('settings-bar') active @stop @section('company') class="active" @stop @section('HeadInclude') @stop @section('PageHeader') @stop @section('breadcrumbs') @stop @section('content') {!! Form::model($companys,['url' => 'postcompany/'.$companys->id, 'method' => 'PATCH','files'=>true]) !!}

{{Lang::get('lang.company')}}

{!! Form::submit(Lang::get('lang.save'),['class'=>'form-group btn btn-primary pull-right'])!!}
@if(Session::has('success'))
Success! {{Session::get('success')}}
@endif @if(Session::has('fails'))
Fail! {{Session::get('fails')}}
@endif
{{--
--}}
{!! Form::label('company_name',Lang::get('lang.name')) !!} {!! $errors->first('company_name', ':message') !!} {!! Form::text('company_name',$companys->company_name,['class' => 'form-control']) !!}
{!! Form::label('website',Lang::get('lang.website')) !!} {!! $errors->first('website', ':message') !!} {!! Form::text('website',$companys->website,['class' => 'form-control']) !!}
{!! Form::label('phone',Lang::get('lang.phone')) !!} {!! $errors->first('phone', ':message') !!} {!! Form::text('phone',$companys->phone,['class' => 'form-control']) !!}
{!! Form::label('address',Lang::get('lang.address')) !!} {!! $errors->first('company_address', ':message') !!} {!! Form::textarea('company_address',$companys->address,['class' => 'form-control','size' => '30x5']) !!}
{{--
--}} {{--
--}} {{-- {!! Form::label('landing_page',Lang::get('lang.landing')) !!} --}} {{-- {!!Form::select('landing_page', ['landing page'],null,['class' => 'form-control select']) !!} --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- {!! Form::label('offline_page',Lang::get('lang.offline')) !!} --}} {{-- {!!FooterIncluderm::select('offline_page', ['offline page'],null,['class' => 'form-control select']) !!} --}} {{--
--}} {{--
--}} {{--
--}} {{--
--}} {{-- {!! Form::label('thank_page',Lang::get('lang.thank')) !!} --}} {{-- {!! Form::select('thank_page', ['thank page'],null,['class' => 'form-control select']) !!} --}} {{--
--}} {{--
--}}
{!! Form::label('logo',Lang::get('lang.logo')) !!}
Upload file {!! Form::file('logo') !!}
@if($companys->logo != null)
{!! Form::checkbox('use_logo') !!}
@endif
@stop @section('FooterInclude') @stop @stop