@extends('layouts.app') @section('content')
{{translate('Update Pickup Point Information')}}
@csrf
{{translate('Name')}}
{{translate('Location')}}
{{ $pickup_point->address }}
{{translate('Phone')}}
{{translate('Pickup Point Status')}}
pick_up_status == 1) checked @endif>
{{translate('Pick-up Point Manager')}}
@foreach(\App\Staff::all() as $staff) @if ($staff != null && $staff->user!=null )
staff_id == $staff->id) selected @endif>{{$staff->user->name}}
@endif @endforeach
@endsection