@extends('layouts.admin.app') @section('title') Add/Edit Sales Rep @stop @section('main')
{!! Form::open(['method'=>'POST','action' => 'AdminCustomersController@salesrepStore']) !!}

Add new Sales Rep

{!! Form::label('code', 'Code:') !!} {!! Form::text('code', null, ['class'=>'form-control', 'placeholder'=>'Code']) !!} @if ($errors->has('code')) {{ $errors->first('code') }} @endif
{!! Form::label('name', 'Name:') !!} {!! Form::text('name', null, ['class'=>'form-control', 'placeholder'=>'Name']) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::label('email', 'Email:') !!} {!! Form::email('email', null, ['class'=>'form-control', 'placeholder'=>'Email']) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::submit('Add', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@foreach($salesrep as $rep) @endforeach
ID Code Name Email
{{$rep->id}} {{$rep->code}} {{$rep->name}} {{$rep->email}}
@stop @section('footer') @stop