@extends('layouts.master') @section('page_title') @if(isset($page_title)) {{ $page_title }} @endif @endsection @section('content')
@include('commons.notifications')
{{-- @include('commons.notifications') --}}
{{-- start of content --}}

{!! Form::model($network_arr, [ 'method' => 'PATCH', 'url' => ['network_ops', $network_arr], 'class' => 'form-horizontal form-label-left' ]) !!}
{!! Form::text('name', old('name'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter name' , 'id' => 'name']) !!} {!! $errors->first('name', '

:message

') !!}
{!! Form::select('country', $countries ,old('country'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter Country' , 'id' => 'country']) !!} {!! $errors->first('country', '

:message

') !!}
{!! Form::select('account_manager_id', $account_manager ,old('account_manager_id'), ['class' => 'form-control col-md-7 col-xs-12', 'placeholder'=>'Enter Account Manager' , 'id' => 'account_manager_id']) !!} {!! $errors->first('account_manager_id', '

:message

') !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection