PATH:
home
/
lab2454c
/
vaultchip.com
/
platform
/
plugins
/
ecommerce
/
resources
/
views
/
themes
/
customers
@extends('plugins/ecommerce::themes.customers.master') @section('content') <div class="panel panel-default"> <div class="panel-heading"> <h2 class="customer-page-title">{{ __('Account information') }}</h2> </div> <div class="panel-body"> {!! Form::open(['route' => 'customer.edit-account']) !!} <div class="input-group"> <span class="input-group-prepend">{{ __('Full Name:') }}</span> <input id="name" type="text" class="form-control" name="name" value="{{ auth('customer')->user()->name }}"> </div> {!! Form::error('name', $errors) !!} <div class="input-group @if ($errors->has('dob')) has-error @endif"> <span class="input-group-prepend">{{ __('Date of birth:') }}</span> <input id="date_of_birth" type="text" class="form-control" name="dob" value="{{ auth('customer')->user()->dob }}"> </div> {!! Form::error('dob', $errors) !!} <div class="input-group @if ($errors->has('email')) has-error @endif"> <span class="input-group-prepend">{{ __('Email:') }}</span> <input id="email" type="text" class="form-control" disabled="disabled" value="{{ auth('customer')->user()->email }}" name="email"> </div> {!! Form::error('email', $errors) !!} <div class="input-group @if ($errors->has('phone')) has-error @endif"> <span class="input-group-prepend">{{ __('Phone:') }}</span> <input type="text" class="form-control" name="phone" id="phone" placeholder="{{ __('Phone') }}" value="{{ auth('customer')->user()->phone }}"> </div> {!! Form::error('phone', $errors) !!} <div class="form-group col s12 text-center"> <button type="submit" class="btn btn-primary customer-btn">{{ __('Update') }}</button> </div> {!! Form::close() !!} </div> </div> @endsection
[-] master.blade.php
[edit]
[-] overview.blade.php
[edit]
[+]
..
[-] edit-account.blade.php
[edit]
[-] register.blade.php
[edit]
[-] change-profile-image.blade.php
[edit]
[-] login.blade.php
[edit]
[+]
passwords
[-] change-password.blade.php
[edit]
[-] verify.blade.php
[edit]
[+]
orders
[+]
address