@extends('layouts._front.dashboard_manager') @section('content') {!! Form::open(array('url' => '/dashboard/sales/sales-rep/edit/'.$salesRep->fldManagerID, 'method' => 'post', 'class' => '','id'=>'profile_edit_form','files' => true)) !!}
{!! Form::button(' Save Sales Rep',array('class'=>'uk-button uk-form-help-inline text-uppercase uk-text-bold uk-button-primary ','type'=>'submit','name'=>'submit'))!!}
@if (Session::has('success'))
{!!Session::get('success')!!}
@endif

Sales Rep

{!! Form::label('firstname', '* First Name',array('class'=>'lbl' )); !!} {!! Form::text('firstname',$salesRep->fldManagerFirstname,array('id'=>'firstname','required','class'=>'text')) !!} @if($errors->salesrep->first('firstname'))
{!!$errors->salesrep->first('firstname')!!}
@endif
{!! Form::label('lastname', '* Last Name',array('class'=>'lbl' )); !!} {!! Form::text('lastname',$salesRep->fldManagerLastname,array('id'=>'lastname','required','class'=>'text')) !!} @if($errors->salesrep->first('lastname'))
{!!$errors->salesrep->first('lastname')!!}
@endif
{!! Form::label('phone', '* Contact #',array('class'=>'lbl' )); !!} {!! Form::text('phone',$salesRep->fldManagerPhoneNo,array('id'=>'phone','required','class'=>'text phone_us')) !!} @if($errors->salesrep->first('phone'))
{!!$errors->salesrep->first('phone')!!}
@endif
{!! Form::label('email', '* Email Address',array('class'=>'lbl' )); !!} {!! Form::email('email',$salesRep->fldManagerEmail,array('id'=>'email','required','class'=>'text')) !!} @if($errors->salesrep->first('email'))
{!!$errors->salesrep->first('email')!!}
@endif
{!! Form::label('password123', '* Password',array('class'=>'lbl table-text light' )); !!} {!! Form::password('password',array('id'=>'password_fld','class'=>'text')) !!}
at least 8 char an uppercase a number special char
@if($errors->salesrep->first('password'))
{!!$errors->salesrep->first('password')!!}
@endif
{!! Form::button(' Save Sales Rep',array('class'=>'uk-button uk-form-help-inline text-uppercase uk-text-bold uk-button-primary ','type'=>'submit','name'=>'submit'))!!}
{!! Form::close() !!} @stop @section('headercodes') {!! Html::style('_front/plugins/password/strength.css') !!} @stop @section('extracodes') {{-- */ /* */ /* --}} {!! Html::script('_front/assets/js/mask.js') !!} {!! Html::script('_front/plugins/password/strength.js') !!} @stop