@extends('user') @section('css') @stop @section('content')

@include('partials.breadcrumb')

{!! Form::open(['method'=>'post','role'=>'form','name' =>'editForm', 'files'=>true]) !!}
@if($user->image == null) ... @else ... @endif
Select image Change Remove
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('address')) {{ $errors->first('address') }} @endif
@if ($errors->has('city')) {{ $errors->first('city') }} @endif
@if ($errors->has('zip_code')) {{ $errors->first('zip_code') }} @endif
{{ $errors->first('country') }}

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