@extends('themes.default1.agent.layout.agent') @section('Users') class="nav-link active" @stop @section('user-bar') class="nav-link active" @stop @section('user') class="active" @stop @section('organizations') class="nav-link active" @stop @section('HeadInclude') @stop @section('PageHeader')

{!! Lang::get('lang.organization') !!}

@stop @section('breadcrumbs') @stop @section('content') {!! Form::open(['route' => 'organizations.store','method'=>'post']) !!} @if(Session::has('errors'))
{!! Lang::get('lang.alert') !!}!
@if($errors->first('name'))
  • {!! $errors->first('name', ':message') !!}
  • @endif @if($errors->first('phone'))
  • {!! $errors->first('phone', ':message') !!}
  • @endif @if($errors->first('website'))
  • {!! $errors->first('website', ':message') !!}
  • @endif
    @endif

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

    {!! Form::label('name',Lang::get('lang.name')) !!} * {!! Form::text('name',null,['class' => 'form-control']) !!}
    {!! Form::label('phone',Lang::get('lang.phone')) !!} {!! Form::text('phone',null,['class' => 'form-control']) !!}
    {!! Form::label('website',Lang::get('lang.website')) !!} {!! Form::text('website',null,['class' => 'form-control']) !!}
    {!! Form::label('address',Lang::get('lang.address')) !!} {!! Form::textarea('address',null,['class' => 'form-control']) !!}
    {!! Form::label('internal_notes',Lang::get('lang.internal_notes')) !!} {!! Form::textarea('internal_notes',null,['class' => 'form-control']) !!}
    @stop