@extends('layouts.tickets') @section('title', 'Edit Staff') @section('content')
@if(count($errors->all())) @foreach ($errors->all() as $error)
× Alert! {{ $error }}
@endforeach @endif {{Form::open(['url'=>['/admin/staff',$user->id], 'class'=>'defaultForm','method' =>'PUT', 'files' => true])}}
Edit Staff

@if($user->avatar == null) avatar @else avatar @endif {{$user->name}}


{{Form::close()}}
@stop @section('script') @stop