@extends('dashboard_layout') @section('content')
@if(Session::has('submit-status')) @endif
{{ csrf_field() }}
@if ($errors->first('first_name')){{ $errors->first('first_name') }}@endif
@if ($errors->first('last_name')){{ $errors->first('last_name') }}@endif
@if ($errors->first('designation')){{ $errors->first('designation') }}@endif
@if ($errors->first('description')){{ $errors->first('description') }}@endif
@if($team->image && file_exists(public_path() ."/upload/teams/".$team->image)) @else @endif
@if ($errors->first('image')){{ $errors->first('image') }}@endif
@if ($errors->first('facebook_url')){{ $errors->first('facebook_url') }}@endif
@if ($errors->first('twitter_url')){{ $errors->first('twitter_url') }}@endif
@if ($errors->first('google_plus_url')){{ $errors->first('google_plus_url') }}@endif
{{-- --}}
@endsection