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

Company Details

{{ Form::open(array('url' => 'portfoliocu', 'enctype' => 'multipart/form-data')) }}
{{ Form::text('company_name', null, array('class' => 'form-control', 'placeholder' => 'Enter Company name')) }}
{{ Form::textarea('tag_line', null, array('class' => 'form-control', 'placeholder' => 'Enter Tag line', 'rows'=>'2')) }}
{{ Form::text('phone', null, array('class' => 'form-control', 'placeholder' => 'Enter Phone Number')) }}
{{ Form::text('email', null, array('class' => 'form-control', 'placeholder' => 'Enter Valid Email Id')) }}
{{ Form::textarea('address_line_1', null, array('class' => 'form-control', 'placeholder' => 'Address Line 1', 'rows'=>'2')) }}
{{ Form::textarea('address_line_2', null, array('class' => 'form-control', 'placeholder' => 'Address Line 2', 'rows'=>'2')) }}
{{ Form::text('state', null, array('class' => 'form-control', 'placeholder' => 'Enter State')) }}
{{ Form::text('city', null, array('class' => 'form-control', 'placeholder' => 'Enter city')) }}
{{ Form::text('zip_code', null, array('class' => 'form-control', 'placeholder' => 'Enter Zip Code')) }}
{{ Form::text('pan', null, array('class' => 'form-control', 'placeholder' => 'Enter identification like (PAN: xxxxxxxx)')) }}
{{ Form::text('gstin', null, array('class' => 'form-control', 'placeholder' => 'Enter identification like (PAN: xxxxxxxx)')) }}
{{ Form::text('sac', null, array('class' => 'form-control', 'placeholder' => 'Enter identification like (PAN: xxxxxxxx)')) }}
{{ Form::text('website', null, array('class' => 'form-control', 'placeholder' => 'Enter your Website Url')) }}
{{ Form::text('currency', null, array('class' => 'form-control', 'placeholder' => 'Enter your Choice of currency in words')) }}
{{ Form::text('terms', null, array('class' => 'form-control', 'placeholder' => 'Enter your Terms & Conditions', 'maxlength' => '40')) }}
{{--
{{ Form::text('bcc', null, array('class' => 'form-control', 'placeholder' => 'Enter bcc emails Comma seperated')) }}
--}} {{ Form::close() }}
@endsection